Skip to content

Commit

Permalink
this might be it
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomocavalieri committed Mar 4, 2025
1 parent 3a79c90 commit c2d4878
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,19 +152,21 @@ jobs:
echo "ok: Architecture match"
if: ${{ matrix.run-integration-tests }}

- name: debug
run: |
which escript
echo $PATH
- name: Run tests
uses: clechasseur/rs-cargo@v3
with:
command: test
# We only want to run the `test-output` when running integration tests.
# There's a caveat though: when `cargo-tool` is `cross` it uses a container
# and would result in these integration tests failing due to not finding
# the escript binary. So, in case `cargo-tool != cargo` we'll skip the
# `test-output` tests as well.
args: >-
--workspace
--target ${{ matrix.target }}
${{ (matrix.run-integration-tests && ' ') || '--exclude test-output' }}
${{ ((matrix.run-integration-tests && matrix.cargo-tool == 'cargo')
&& ' ')
|| '--exclude test-output' }}
tool: ${{ matrix.cargo-tool }}

- name: test/project_erlang (non-windows)
Expand Down

0 comments on commit c2d4878

Please sign in to comment.