Skip to content

Commit

Permalink
Update rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
peters authored Jun 29, 2020
1 parent 10fa956 commit cb2abee
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ jobs:
path: ${{ github.workspace }}/target/${{ env.RUST_TARGET }}/release/warp-runner

build-warp-packer-windows:
runs-on: windows-latest
name: Build WP windows-latest ${{ matrix.target }}
runs-on: ubuntu-latest
name: Build WP ${{ matrix.target }}
needs: [setup, build-warp-runner-linux, build-warp-runner-osx]
env:
CARGO_PKG_VERSION: ${{ needs.setup.outputs.CARGO_PKG_VERSION }}
Expand Down Expand Up @@ -157,6 +157,12 @@ jobs:
name: warp-runner-x86_64-apple-darwin
path: ${{ github.workspace }}/target/x86_64-apple-darwin/release

- name: Install mingw
run: |
sudo apt-get update && \
sudo apt-get install -y --no-install-recommends \
mingw-w64 g++-mingw-w64-x86-64 g++-mingw-w64-i686
- name: Setup ${{ matrix.target }}
run: rustup target add ${{ matrix.target }} --toolchain stable

Expand Down

0 comments on commit cb2abee

Please sign in to comment.