Skip to content

Commit

Permalink
Merge pull request #35 from ardura/workflow_testing_2
Browse files Browse the repository at this point in the history
Workflow now builds linux, windows, and macos versions
  • Loading branch information
ardura authored Apr 12, 2024
2 parents 5c70b43 + 3f4b73b commit a0a2d85
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 23 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/linux_build

This file was deleted.

30 changes: 27 additions & 3 deletions .github/workflows/macos_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@ env:
CARGO_TERM_COLOR: always

jobs:
build:

build_macos:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: Run bundler
Expand All @@ -23,3 +21,29 @@ jobs:
name: macos_build
path: target/bundled/Actuate.vst3
if-no-files-found: warn
build_linux:
runs-on: ubuntu-latest
steps:
- uses: ConorMacBride/[email protected]
with:
# Packages to install with apt on Linux
apt: libgl1-mesa-dev libglu1-mesa-dev libxcursor-dev libxkbcommon-x11-dev libatk1.0-dev build-essential libgtk-3-dev libxcb-dri2-0-dev libxcb-icccm4-dev libx11-xcb-dev
- uses: actions/checkout@v3
- name: Run bundler
run: cargo xtask bundle Actuate --profile release
- uses: actions/upload-artifact@v4
with:
name: linux_build
path: target/bundled/Actuate.vst3
if-no-files-found: warn
build_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Run bundler
run: cargo xtask bundle Actuate --profile release
- uses: actions/upload-artifact@v4
with:
name: windows_build
path: target/bundled/Actuate.vst3
if-no-files-found: warn

0 comments on commit a0a2d85

Please sign in to comment.