CI: Fix unit test exclusion in release for real
This commit is contained in:
2
.github/workflows/linux-build.yml
vendored
2
.github/workflows/linux-build.yml
vendored
@@ -71,7 +71,7 @@ jobs:
|
||||
|
||||
# Run unit tests
|
||||
- name: Run unit tests
|
||||
if: matrix.mode.name != 'releasedbg'
|
||||
if: matrix.mode != 'releasedbg'
|
||||
run: xmake run NazaraUnitTests
|
||||
|
||||
# Install the result files
|
||||
|
||||
2
.github/workflows/macos-build.yml
vendored
2
.github/workflows/macos-build.yml
vendored
@@ -65,7 +65,7 @@ jobs:
|
||||
|
||||
# Run unit tests
|
||||
- name: Run unit tests
|
||||
if: matrix.mode.name != 'releasedbg'
|
||||
if: matrix.mode != 'releasedbg'
|
||||
run: xmake run NazaraUnitTests
|
||||
|
||||
# Install the result files
|
||||
|
||||
2
.github/workflows/msys2-build.yml
vendored
2
.github/workflows/msys2-build.yml
vendored
@@ -82,7 +82,7 @@ jobs:
|
||||
|
||||
# Run unit tests
|
||||
- name: Run unit tests
|
||||
if: matrix.mode.name != 'releasedbg'
|
||||
if: matrix.mode != 'releasedbg'
|
||||
run: xmake run NazaraUnitTests
|
||||
|
||||
# Install the result files
|
||||
|
||||
2
.github/workflows/windows-build.yml
vendored
2
.github/workflows/windows-build.yml
vendored
@@ -65,7 +65,7 @@ jobs:
|
||||
|
||||
# Run unit tests
|
||||
- name: Run unit tests
|
||||
if: matrix.mode.name != 'releasedbg'
|
||||
if: matrix.mode != 'releasedbg'
|
||||
run: xmake.exe run NazaraUnitTests
|
||||
|
||||
# Install the result files
|
||||
|
||||
Reference in New Issue
Block a user