Skip to content

Commit

Permalink
act action now failing at uploading atrifacts nektos/act#329
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Feb 14, 2021
1 parent 33efe90 commit 9204253
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install-tools
if: ${{ env.ACT }}
run: |
apt update
apt install -y cmake pkg-config libssl-dev git build-essential clang libclang-dev curl libz-dev
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s -- -y --default-toolchain none
- name: init-rust-target
run: rustup target add wasm32-unknown-unknown
run: |
source $HOME/.cargo/env
rustup target add wasm32-unknown-unknown
- name: Build
run: cargo build --release
run: |
source $HOME/.cargo/env
cargo build --release
- uses: actions/upload-artifact@v2
with:
name: release
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: init-rust-target
run: rustup target add wasm32-unknown-unknown
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustup target add wasm32-unknown-unknown
- name: Build
run: cargo build --release
- uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 9204253

Please sign in to comment.