Skip to content

Add binary target for use in RustRover #6

Add binary target for use in RustRover

Add binary target for use in RustRover #6

name: Rust GDExtension
on:
- push
- pull_request
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: "1"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Cache
uses: actions/cache@v4
with:
path: target
key: linux-test
- name: Build JummBox
run: cd dependencies/jummbox && npm install && npm update && npm run build-synth
- name: Run tests
run: cargo test --verbose
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Cache
uses: actions/cache@v4
with:
path: target
key: linux
- name: Build JummBox
run: cd dependencies/jummbox && npm install && npm update && npm run build-synth
- name: Build GDExtension
run: cargo build --verbose --release
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: beepbox-synthesizer-linux-x86_64-${{ github.sha }}
path: target/release/libbeepbox_synthesizer.so
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Cache
uses: actions/cache@v4
with:
path: target
key: windows
- name: Build JummBox
run: cd dependencies/jummbox && npm install && npm update && npm run build-synth
- name: Build GDExtension
run: cargo build --verbose --release
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: beepbox-synthesizer-windows-x86_64-${{ github.sha }}
path: target/release/beepbox_synthesizer.dll