Remove unneeded persists #57
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 Nightlies | |
on: | |
- push | |
- workflow_dispatch | |
jobs: | |
build: | |
name: Build Releases | |
runs-on: ${{ matrix.os.runner }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- name: linux | |
runner: ubuntu-latest | |
target: i686-unknown-linux-gnu | |
- name: win | |
runner: windows-latest | |
target: i686-pc-windows-msvc | |
features: | |
- name: default | |
features: all | |
- name: release-debug | |
features: all,rel-debugging | |
- name: snmalloc | |
features: all,snmalloc | |
- name: release-debug-snmalloc | |
features: all,snmalloc,rel-debugging | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Rust toolchain | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
target: ${{ matrix.os.target }} | |
- name: Install dependencies (Linux) | |
if: ${{ matrix.os.name == 'linux' }} | |
run: | | |
sudo dpkg --add-architecture i386 | |
sudo apt-get update | |
sudo apt-get install libgcc-s1:i386 g++-multilib zlib1g-dev:i386 libssl-dev:i386 | |
- name: Build | |
run: cargo build --release --package aneri --target "${{ matrix.os.target }}" --no-default-features --features "${{ matrix.features.features }}" | |
env: | |
PKG_CONFIG_ALLOW_CROSS: 1 | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: aneri-${{ matrix.os.name }}-${{ matrix.features.name }} | |
if-no-files-found: error | |
path: | | |
target/${{ matrix.os.target }}/release/aneri.dll | |
target/${{ matrix.os.target }}/release/aneri.pdb | |
target/${{ matrix.os.target }}/release/libaneri.so |