Skip to content

Commit

Permalink
Upload artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
nambrot committed Jan 9, 2024
1 parent c2c2804 commit 63c62bb
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,18 @@ jobs:
- name: Optimize wasm
run: cargo cw-optimizoor

- name: Rename
run: rename 's/(.*)(-aarch64)(.*)/$1$3/d' *

- name: Zip
run: cd artifacts && zip -r ../wasm_codes.zip * && cd ../

- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: wasm_codes
path: wasm_codes.zip

coverage:
runs-on: ubuntu-latest
env:
Expand All @@ -61,7 +73,7 @@ jobs:
uses: taiki-e/install-action@cargo-llvm-cov

- name: Generate code coverage
run: cargo llvm-cov --all-features --workspace --exclude hpl-tests --codecov --output-path codecov.json
run: cargo +nightly llvm-cov --all-features --workspace --exclude hpl-tests --codecov --output-path codecov.json

- name: Upload to codecov.io
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit 63c62bb

Please sign in to comment.