Skip to content

Commit

Permalink
fix juce8 CI
Browse files Browse the repository at this point in the history
  • Loading branch information
benkuper committed Oct 9, 2024
1 parent 9e40afc commit f1c3baa
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 18 deletions.
File renamed without changes.
40 changes: 22 additions & 18 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ jobs:
fail-fast: false

steps:
- name: Set Variables
id: set_variables
uses: ./.github/actions/set-variables
with:
os: ${{ matrix.arch }}

- name: Checkout repo
uses: actions/checkout@v2
with:
Expand All @@ -35,11 +41,7 @@ jobs:
ref: develop-local
path: JUCE

- name: Set Variables
id: set_variables
uses: ./.github/actions/set-suffix
with:
os: ${{ matrix.arch }}


- name: Add msbuild to PATH
uses: microsoft/[email protected]
Expand Down Expand Up @@ -107,6 +109,12 @@ jobs:
fail-fast: false

steps:
- name: Set Variables
id: set_variables
uses: ./.github/actions/set-variables
with:
os: 'osx-${{ matrix.suffix }}'

- name: Checkout repo
uses: actions/checkout@v2
with:
Expand All @@ -119,11 +127,7 @@ jobs:
ref: develop-local
path: JUCE

- name: Set Suffix
id: set_variables
uses: ./.github/actions/set-suffix
with:
os: 'osx-${{ matrix.suffix }}'


- name: Download Packages
run: |
Expand Down Expand Up @@ -184,9 +188,9 @@ jobs:
ref: develop-local
path: JUCE

- name: Set Suffix
- name: Set Variables
id: set_variables
uses: ./.github/actions/set-suffix
uses: ./.github/actions/set-variables
with:
os: 'x64'

Expand Down Expand Up @@ -266,6 +270,12 @@ jobs:
fail-fast: false

steps:
- name: Set Variables
id: set_variables
uses: ./.github/actions/set-variables
with:
os: ${{ matrix.arch }}

- name: Checkout repo
uses: actions/checkout@v2
with:
Expand All @@ -278,12 +288,6 @@ jobs:
ref: develop-local
path: JUCE

- name: Set Suffix
id: set_variables
uses: ./.github/actions/set-suffix
with:
os: ${{ matrix.arch }}

- name: Download and prepare AppImage
run: |
sudo apt-get update
Expand Down

0 comments on commit f1c3baa

Please sign in to comment.