Skip to content

Commit

Permalink
Update workflows to new Makefile prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Jul 5, 2024
1 parent 12700b0 commit 570374e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
version: 1.0

- name: Run tests
run: make clint
run: make c_lint

c:
strategy:
Expand Down Expand Up @@ -75,15 +75,15 @@ jobs:

- name: Run tests (linux)
if: ${{ contains(matrix.os, 'ubuntu') }}
run: make ctest${{ (matrix.os != 'ubuntu-latest' && '_auto') || '' }}
run: make c_test${{ (matrix.os != 'ubuntu-latest' && '_auto') || '' }}

- name: Run tests (windows)
if: ${{ contains(matrix.os, 'windows') }}
run: make ctest_auto
run: make c_test_auto

- name: Run tests (macos)
if: ${{ contains(matrix.os, 'macos') }}
run: make ctest_auto
run: make c_test_auto
env:
NO_OPTIONAL_TESTS: true
COMPILER_OVERRIDE: clang
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: make csdependencies

- name: Run Tests
run: make cstest
run: make cs_test

csharp-lint:
runs-on: ubuntu-latest
Expand All @@ -54,5 +54,5 @@ jobs:
cache-dependency-path: 'csharp/*/packages.lock.json'

- name: Run Linter
run: make cslint
run: make cs_lint

6 changes: 3 additions & 3 deletions .github/workflows/javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ jobs:
cache-dependency-path: 'javascript/package-lock.json'

- name: Install dependencies
run: make jsdependencies
run: make js_dependencies

- name: Run tests (serially)
if: ${{ matrix.version == 22 && matrix.os == 'ubuntu-latest' }}
run: make jstest
run: make js_test

- name: Run tests (in parallel)
if: ${{ !(matrix.version == 22 && matrix.os == 'ubuntu-latest') }}
run: make jstest_auto
run: make js_test_auto

4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ jobs:
- name: Run tests (serially)
if: ${{(matrix.os == 'ubuntu-latest' && matrix.version == '3.12') || contains(matrix.version, 'graalpy')}}
run: make pytest LINT=false
run: make py_test LINT=false

- name: Run tests (in parallel)
if: ${{!((matrix.os == 'ubuntu-latest' && matrix.version == '3.12') || contains(matrix.version, 'graalpy'))}}
run: make pytest_auto LINT=false
run: make py_test_auto LINT=false
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
- run: make rstest
- run: make rs_test

0 comments on commit 570374e

Please sign in to comment.