chore: add Cargo.lock to version control #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build PR | |
| on: | |
| pull_request: | |
| types: [ opened, edited, reopened, review_requested ] | |
| branches: [ master ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build-cross: | |
| runs-on: ubuntu-latest | |
| env: | |
| RUST_BACKTRACE: full | |
| strategy: | |
| matrix: | |
| target: | |
| - x86_64-unknown-linux-musl | |
| - aarch64-unknown-linux-musl | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install cross | |
| run: cargo install cross | |
| - name: Build ${{ matrix.target }} | |
| timeout-minutes: 120 | |
| run: | | |
| compile_target=${{ matrix.target }} | |
| cd build | |
| ./build-release -t ${{ matrix.target }} $compile_features $compile_compress | |
| build-unix: | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| RUST_BACKTRACE: full | |
| strategy: | |
| matrix: | |
| os: [macos-latest] | |
| target: | |
| - x86_64-apple-darwin | |
| - aarch64-apple-darwin | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install GNU tar | |
| if: runner.os == 'macOS' | |
| run: | | |
| brew install gnu-tar | |
| # echo "::add-path::/usr/local/opt/gnu-tar/libexec/gnubin" | |
| echo "/usr/local/opt/gnu-tar/libexec/gnubin" >> $GITHUB_PATH | |
| - name: Install Rust stable | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: stable | |
| target: ${{ matrix.target }} | |
| default: true | |
| override: true | |
| - name: Build release | |
| shell: bash | |
| run: | | |
| ./build/build-host-release -t ${{ matrix.target }} | |
| build-windows: | |
| runs-on: windows-latest | |
| env: | |
| RUSTFLAGS: "-Ctarget-feature=+crt-static" | |
| RUST_BACKTRACE: full | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install Rust stable | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: stable | |
| default: true | |
| override: true | |
| - name: Build release | |
| run: | | |
| pwsh ./build/build-host-release.ps1 | |
| - name: Upload Artifacts | |
| uses: actions/upload-artifact@v2 | |
| with: | |
| name: windows-native | |
| path: build/release/* |