Skip to content

Commit

Permalink
Fix change test_case -> test-case
Browse files Browse the repository at this point in the history
  • Loading branch information
PucklaJ committed Feb 16, 2024
1 parent 95e3f14 commit d740ada
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,45 +13,45 @@ jobs:
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: 2.8.6
- run: xmake f -y -p linux -a x86_64 -k static -m release --build_test=y
- run: xmake f -yvD -p linux -a x86_64 -k static -m release --build_test=y
- run: xmake -wvD
- run: xmake run -w . dynareadout_test --test_case=$TEST_CASES
- run: xmake run -w . dynareadout_test --test-case=$TEST_CASES
linux-x86_64-static-profiling:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: 2.8.6
- run: xmake f -y -p linux -a x86_64 -k static -m release --build_test=y --profiling=y
- run: xmake f -yvD -p linux -a x86_64 -k static -m release --build_test=y --profiling=y
- run: xmake -wvD
- run: xmake run -w . dynareadout_test --test_case=$TEST_CASES
- run: xmake run -w . dynareadout_test --test-case=$TEST_CASES
linux-x86_64-static-non-thread-safe:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: 2.8.6
- run: xmake f -y -p linux -a x86_64 -k static -m release --build_test=y --thread_safe=n
- run: xmake f -yvD -p linux -a x86_64 -k static -m release --build_test=y --thread_safe=n
- run: xmake -wvD
- run: xmake run -w . dynareadout_test --test_case=$TEST_CASES
- run: xmake run -w . dynareadout_test --test-case=$TEST_CASES
linux-x86_64-static-profiling-non-thread-safe:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: 2.8.6
- run: xmake f -y -p linux -a x86_64 -k static -m release --build_test=y --profiling=y --thread_safe=n
- run: xmake f -yvD -p linux -a x86_64 -k static -m release --build_test=y --profiling=y --thread_safe=n
- run: xmake -wvD
- run: xmake run -w . dynareadout_test --test_case=$TEST_CASES
- run: xmake run -w . dynareadout_test --test-case=$TEST_CASES
linux-x86_64-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: 2.8.6
- run: xmake f -y -p linux -a x86_64 -k static -m release --build_python=y
- run: xmake f -yvD -p linux -a x86_64 -k static -m release --build_python=y
- run: xmake -wvD

0 comments on commit d740ada

Please sign in to comment.