Skip to content

Commit

Permalink
echo $PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
ac000 committed Aug 27, 2024
1 parent 6c16106 commit fc67d98
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,9 @@ jobs:

- name: Setup rust
run: |
echo $HOME
curl https://sh.rustup.rs | sh -s -- -y
. "$HOME/.cargo/env"
cargo install cargo-component
if: steps.metadata.outputs.module == 'wasm-wasi-component'

Expand Down Expand Up @@ -357,6 +359,12 @@ jobs:

- name: Run ${{ steps.metadata.outputs.module }} tests
run: |
sudo -E echo $HOME
sudo -E echo $PATH
sudo -E /home/runner/.cargo/bin/cargo -V
sudo -E hash
sudo -E which cargo
sudo -E cargo component -V
sudo -E pytest --print-log ${{ steps.metadata.outputs.testpath }}
# Skip pytest if wasm build, as there are no tests yet
if: steps.metadata.outputs.module != 'wasm'

0 comments on commit fc67d98

Please sign in to comment.