Skip to content

Commit

Permalink
Fix(ci): List directories of wasm build files after they have been cr…
Browse files Browse the repository at this point in the history
…eated.

This fixes issue where CI fail when listing the wasm build directory.
  • Loading branch information
RomanHodulak committed Aug 25, 2022
1 parent 43ca751 commit 20062d6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,20 @@ jobs:
run: |
cache-util restore cargo_git cargo_registry sccache yarn_cache
cache-util restore aurora-engine-target@generic@${{ hashFiles('**/Cargo.lock') }}:target
- name: List directories
run: ls -la target/wasm32-unknown-unknown/release && ls -la
- name: Build contracts
run: cargo make build-contracts
- name: Test contracts
run: cargo make test-contracts
- name: Build mainnet test WASM
run: cargo make --profile mainnet build-test
- name: List mainnet WASM directory and root directory
run: ls -la target/wasm32-unknown-unknown/release && ls -la
- name: Test mainnet
run: cargo make --profile mainnet test-workspace
- name: Build testnet test WASM
run: cargo make --profile testnet build-test
- name: List testnet WASM directory and root directory
run: ls -la target/wasm32-unknown-unknown/release && ls -la
- name: Test testnet
run: cargo make --profile testnet test-workspace
- name: Save cache
Expand Down

0 comments on commit 20062d6

Please sign in to comment.