Update actions #25
This file contains 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 Nightly Releases | |
on: | |
push: | |
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 | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.target }} | |
path: build/release/* | |
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 }} | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.target }} | |
path: build/release/* | |
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@v4 | |
with: | |
name: windows-native | |
path: build/release/* |