Skip to content

Commit

Permalink
[CI] upload artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
akru committed Mar 4, 2021
1 parent 3a649ad commit f5e5879
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
os: [ubuntu-18.04, macOS-latest, windows-latest]

env:
EXE_EXT: ${{ contains(matrix.os, 'windows') && '.exe' || '' }}

steps:
- name: Install LLVM (windows only)
Expand All @@ -33,6 +36,12 @@ jobs:
- name: Build optimized binary
run: cargo build --release --locked

- name: Upload build artifacts
uses: actions/upload-artifact@master
with:
name: ${{ matrix.os }}
path: target/release/plasm${{ env.EXE_EXT }}

nix:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit f5e5879

Please sign in to comment.