Skip to content

Commit f67a898

Browse files
committed
Remove checks.
1 parent 521631d commit f67a898

File tree

3 files changed

+3
-37
lines changed

3 files changed

+3
-37
lines changed

.github/workflows/eepp-linux-build-check.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,8 @@ jobs:
3939
run: |
4040
cd bin/unit_tests
4141
xvfb-run ./eepp-unit_tests
42-
- name: Upload test artifacts if folder exists
43-
if: always()
44-
run: |
45-
if [ -d bin/unit_tests/output ]; then
46-
echo "Artifact folder exists (bin/unit_tests/output), uploading..."
47-
exit 0
48-
else
49-
echo "No artifact folder (bin/unit_tests/output), tests passed, skipping upload."
50-
exit 0
51-
fi
52-
id: upload-check
5342
- name: Upload artifacts
54-
if: always() && steps.upload-check.outputs.result == '0' && exists('bin/unit_tests/output')
43+
if: always()
5544
uses: actions/upload-artifact@v4
5645
with:
5746
name: linux-test-output

.github/workflows/eepp-macos-build-check.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,8 @@ jobs:
2525
run: |
2626
cd bin/unit_tests
2727
./eepp-unit_tests
28-
- name: Upload test artifacts if folder exists
29-
if: always()
30-
run: |
31-
if [ -d bin/unit_tests/output ]; then
32-
echo "Artifact folder exists, uploading..."
33-
exit 0
34-
else
35-
echo "No artifact folder (bin/unit_tests/output), tests passed, skipping upload."
36-
exit 0
37-
fi
38-
id: upload-check
3928
- name: Upload artifacts
40-
if: always() && steps.upload-check.outputs.result == '0' && exists('bin/unit_tests/output')
29+
if: always()
4130
uses: actions/upload-artifact@v4
4231
with:
4332
name: macos-test-output

.github/workflows/eepp-windows-build-check.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -51,20 +51,8 @@ jobs:
5151
set LIBGL_ALWAYS_SOFTWARE=1
5252
set GALLIUM_DRIVER=llvmpipe
5353
bin\unit_tests\eepp-unit_tests.exe
54-
- name: Upload test artifacts if folder exists
55-
if: always()
56-
shell: cmd
57-
run: |
58-
if exist bin\unit_tests\output (
59-
echo Artifact folder exists, uploading...
60-
exit 0
61-
) else (
62-
echo No artifact folder (bin\unit_tests\output), tests passed, skipping upload.
63-
exit 0
64-
)
65-
id: upload-check
6654
- name: Upload artifacts
67-
if: always() && steps.upload-check.outputs.result == '0' && exists('bin/unit_tests/output')
55+
if: always()
6856
uses: actions/upload-artifact@v4
6957
with:
7058
name: windows-test-output

0 commit comments

Comments
 (0)