Skip to content

Commit

Permalink
attempt getting rid of middle man
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Dec 3, 2024
1 parent 104ff7e commit 33525e8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 56 deletions.
49 changes: 0 additions & 49 deletions .github/workflows/get_and_run_tests.yml

This file was deleted.

23 changes: 16 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ jobs:

run-tests:
name: ${{ matrix.test_group.name }}
runs-on: ubuntu-latest
needs:
- process-conditions
- get-exclude-dirs
Expand Down Expand Up @@ -136,13 +137,21 @@ jobs:
directories: './tests/property/ic_api',
run-experimental: true
}
uses: ./.github/workflows/get_and_run_tests.yml
with:
directories: ${{ matrix.test_group.directories }}
exclude-dirs: ${{ needs.get-exclude-dirs.outputs.exclude-dirs }}
run-experimental: ${{ matrix.test_group.run-experimental || false }}
fuzz: ${{ needs.process-conditions.outputs.fuzz == 'true' }}
link-azle: ${{ needs.process-conditions.outputs.link-azle == 'true' }}
steps:
- uses: actions/checkout@v4

- id: get-test-infos
uses: ./.github/actions/get_test_infos
with:
directories: ${{ matrix.test_group.directories }}
exclude-dirs: ${{ needs.get-exclude-dirs.outputs.exclude-dirs }}

- uses: ./.github/workflows/run_test.yml
with:
test_infos: ${{ steps.get-test-infos.outputs.test-infos }}
link-azle: ${{ needs.process-conditions.outputs.link-azle == 'true' }}
run-experimental: ${{ matrix.test_group.run-experimental || false }}
fuzz: ${{ needs.process-conditions.outputs.fuzz == 'true' }}

check-test-success:
name: Check Azle tests succeeded
Expand Down

0 comments on commit 33525e8

Please sign in to comment.