mirror of
https://github.com/Relintai/regression-test-project.git
synced 2024-11-12 10:25:30 +01:00
3.3 project
This commit is contained in:
parent
4a4a1543d9
commit
c20c90c4b0
6
.github/workflows/exported.yml
vendored
6
.github/workflows/exported.yml
vendored
@ -25,11 +25,11 @@ jobs:
|
||||
|
||||
# - name: Download Godot
|
||||
# run: |
|
||||
# wget2 https://downloads.tuxfamily.org/godotengine/3.2.4/beta1/Godot_v3.2.4-beta1_x11.64.zip
|
||||
# wget2 https://downloads.tuxfamily.org/godotengine/3.3/beta1/Godot_v3.2.4-beta1_x11.64.zip
|
||||
# unzip Godot_v3.2.4-beta1_x11.64.zip
|
||||
# rm Godot_v3.2.4-beta1_x11.64.zip
|
||||
# mv Godot_v3.2.4-beta1_x11.64 godot.x11.tools.64s
|
||||
# wget2 https://downloads.tuxfamily.org/godotengine/3.2.4/beta1/Godot_v3.2.4-beta1_export_templates.tpz
|
||||
# wget2 https://downloads.tuxfamily.org/godotengine/3.3/beta1/Godot_v3.2.4-beta1_export_templates.tpz
|
||||
# unzip Godot_v3.2.4-beta1_export_templates.tpz
|
||||
# mv templates/linux_x11_64_debug godot.x11.opt.64s
|
||||
# rm -rf templates
|
||||
@ -47,7 +47,7 @@ jobs:
|
||||
run: |
|
||||
git clone https://github.com/godotengine/godot.git
|
||||
cd godot
|
||||
git checkout 3.x
|
||||
git checkout 3.3
|
||||
cd ../
|
||||
|
||||
- name: Compile Godot
|
||||
|
18
.github/workflows/long.yml
vendored
18
.github/workflows/long.yml
vendored
@ -47,7 +47,7 @@ jobs:
|
||||
run: |
|
||||
git clone https://github.com/godotengine/godot.git
|
||||
cd godot
|
||||
git checkout 3.x
|
||||
git checkout 3.3
|
||||
cd ../
|
||||
|
||||
- name: Compile Godot
|
||||
@ -60,21 +60,13 @@ jobs:
|
||||
cd ../
|
||||
rm -rf godot
|
||||
|
||||
- name: Use Godot
|
||||
- name: Open and close editor
|
||||
run: |
|
||||
echo "-------------------- OPEN EDITOR TO IMPORT PROJECT -----------------------"
|
||||
DRI_PRIME=0 xvfb-run ./godot.x11.tools.64s --audio-driver Dummy -e -q --path $(pwd) 2>&1 | tee sanitizers_log.txt || true
|
||||
misc/check_ci_log.py sanitizers_log.txt
|
||||
echo "-------------------- RUN PROJECT -----------------------"
|
||||
|
||||
- name: Test project
|
||||
run: |
|
||||
DRI_PRIME=0 xvfb-run ./godot.x11.tools.64s 3600 --audio-driver Dummy --video-driver GLES3 --path $(pwd) 2>&1 | tee sanitizers_log.txt || true
|
||||
misc/check_ci_log.py sanitizers_log.txt
|
||||
|
||||
# # Export project and run it to check for possible leaks and invalid memory usage
|
||||
# - name: Exporting and running project
|
||||
# run: |
|
||||
# curr="$(pwd)/godot.x11.opt.64s"
|
||||
# sed -i "s|PATH_TO_CHANGE|$curr|" export_presets.cfg
|
||||
# DRI_PRIME=0 xvfb-run ./godot.x11.tools.64s --export-debug "Linux/X11" test_project 2>&1 | tee sanitizers_log.txt || true
|
||||
# misc/check_ci_log.py sanitizers_log.txt
|
||||
# DRI_PRIME=0 xvfb-run ./test_project 20 2>&1 | tee sanitizers_log.txt || true
|
||||
# misc/check_ci_log.py sanitizers_log.txt
|
||||
|
2
.github/workflows/required.yml
vendored
2
.github/workflows/required.yml
vendored
@ -41,7 +41,7 @@ jobs:
|
||||
run: |
|
||||
git clone https://github.com/godotengine/godot.git
|
||||
cd godot
|
||||
git checkout 3.x
|
||||
git checkout 3.3
|
||||
cd ../
|
||||
|
||||
- name: Compile Godot
|
||||
|
16
.github/workflows/stress.yml
vendored
16
.github/workflows/stress.yml
vendored
@ -47,7 +47,7 @@ jobs:
|
||||
run: |
|
||||
git clone https://github.com/godotengine/godot.git
|
||||
cd godot
|
||||
git checkout 3.x
|
||||
git checkout 3.3
|
||||
cd ../
|
||||
|
||||
- name: Compile Godot
|
||||
@ -60,15 +60,17 @@ jobs:
|
||||
cd ../
|
||||
rm -rf godot
|
||||
|
||||
- name: Use Godot
|
||||
- name: Open and close editor
|
||||
run: |
|
||||
sed -i "s|NUMBER_OF_INSTANCES : int = 1|NUMBER_OF_INSTANCES : int = 10|" Start.gd
|
||||
echo "-------------------- OPEN EDITOR TO IMPORT PROJECT -----------------------"
|
||||
DRI_PRIME=0 xvfb-run ./godot.x11.tools.64s --audio-driver Dummy -e -q --path $(pwd) 2>&1 | tee sanitizers_log.txt || true
|
||||
misc/check_ci_log.py sanitizers_log.txt || true
|
||||
echo "-------------------- RUN PROJECT -----------------------"
|
||||
DRI_PRIME=0 xvfb-run ./godot.x11.tools.64s 7200 --audio-driver Dummy --video-driver GLES3 --path $(pwd) 2>&1 | tee sanitizers_log.txt || true
|
||||
misc/check_ci_log.py sanitizers_log.txt || true
|
||||
misc/check_ci_log.py sanitizers_log.txt
|
||||
|
||||
- name: Test project
|
||||
run: |
|
||||
DRI_PRIME=0 xvfb-run ./godot.x11.tools.64s 60 --audio-driver Dummy --video-driver GLES3 --path $(pwd) 2>&1 | tee sanitizers_log.txt || true
|
||||
misc/check_ci_log.py sanitizers_log.txt
|
||||
|
||||
|
||||
# # Export project and run it to check for possible leaks and invalid memory usage
|
||||
# - name: Exporting and running project
|
||||
|
11
.github/workflows/thread_sanitizer.yml
vendored
11
.github/workflows/thread_sanitizer.yml
vendored
@ -47,7 +47,7 @@ jobs:
|
||||
run: |
|
||||
git clone https://github.com/godotengine/godot.git
|
||||
cd godot
|
||||
git checkout 3.x
|
||||
git checkout 3.3
|
||||
cd ../
|
||||
|
||||
- name: Compile Godot
|
||||
@ -58,13 +58,16 @@ jobs:
|
||||
cd ../
|
||||
rm -rf godot
|
||||
|
||||
- name: Use Godot
|
||||
- name: Open and close editor
|
||||
run: |
|
||||
sed -i "s|NUMBER_OF_INSTANCES : int = 1|NUMBER_OF_INSTANCES : int = 10|" Start.gd
|
||||
echo "-------------------- OPEN EDITOR TO IMPORT PROJECT -----------------------"
|
||||
DRI_PRIME=0 xvfb-run ./godot.x11.tools.64.llvms --audio-driver Dummy -e -q --path $(pwd) 2>&1 | tee sanitizers_log.txt || true
|
||||
echo "-------------------- RUN PROJECT -----------------------"
|
||||
misc/check_ci_log.py sanitizers_log.txt
|
||||
|
||||
- name: Test project
|
||||
run: |
|
||||
DRI_PRIME=0 xvfb-run ./godot.x11.tools.64.llvms 3600 --audio-driver Dummy --video-driver GLES3 --path $(pwd) 2>&1 | tee sanitizers_log.txt || true
|
||||
misc/check_ci_log.py sanitizers_log.txt
|
||||
|
||||
# # Export project and run it to check for possible leaks and invalid memory usage
|
||||
# - name: Exporting and running project
|
||||
|
Loading…
Reference in New Issue
Block a user