workflow updates

This commit is contained in:
Alex Janka 2023-04-07 08:54:07 +10:00
parent e04820a80a
commit 2c0253ff50
2 changed files with 17 additions and 28 deletions

View file

@ -18,32 +18,25 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: git submodule update --init --recursive
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- run: |
rustup toolchain install nightly --profile minimal --no-self-update
rustup default nightly
- run: rustup target add aarch64-apple-darwin x86_64-apple-darwin
if: ${{ matrix.os == 'macos' }}
- uses: Swatinem/rust-cache@v2
with:
shared-key: emulator-${{ matrix.os }}
- uses: awalsh128/cache-apt-pkgs-action@latest
if: ${{ matrix.os == 'ubuntu' }}
with:
packages: libasound2-dev libudev-dev
version: 1.0
- uses: actions-rs/cargo@v1
- run: cargo build --release
if: ${{ matrix.os != 'macos' }}
with:
command: build
args: --release
- uses: actions-rs/cargo@v1
- run: cargo build --release --target x86_64-apple-darwin
if: ${{ matrix.os == 'macos' }}
with:
command: build
args: --release --target x86_64-apple-darwin
- uses: actions-rs/cargo@v1
- run: cargo build --release --target aarch64-apple-darwin
if: ${{ matrix.os == 'macos' }}
with:
command: build
args: --release --target aarch64-apple-darwin
- uses: actions/upload-artifact@v3
if: ${{ matrix.os == 'ubuntu' }}
with:

View file

@ -23,27 +23,23 @@ jobs:
with:
url: 'https://github.com/trash80/mGB/raw/master/mGB.gb'
target: test-roms/
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- run: |
rustup toolchain install nightly --profile minimal --no-self-update
rustup default nightly
- run: rustup target add aarch64-apple-darwin x86_64-apple-darwin
if: ${{ matrix.os == 'macos' }}
- uses: Swatinem/rust-cache@v2
with:
shared-key: vst-${{ matrix.os }}
- uses: awalsh128/cache-apt-pkgs-action@latest
if: ${{ matrix.os == 'ubuntu' }}
with:
packages: libasound2-dev libudev-dev xorg-dev libjack-jackd2-dev libx11-xcb-dev libxcb-icccm4-dev libxcb-dri2-0-dev
version: 1.0
- uses: actions-rs/cargo@v1
- run: cargo xtask bundle vst --release
if: ${{ matrix.os != 'macos' }}
with:
command: xtask
args: bundle vst --release
- uses: actions-rs/cargo@v1
- run: cargo xtask bundle-universal vst --release
if: ${{ matrix.os == 'macos' }}
with:
command: xtask
args: bundle-universal vst --release
- uses: actions/upload-artifact@v3
with:
name: gb-vst-${{ matrix.os }}.vst3