-
-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
22 additions
and
18 deletions.
There are no files selected for viewing
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|
@@ -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] | ||
|
@@ -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: | ||
|
@@ -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: | | ||
|
@@ -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' | ||
|
||
|
@@ -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: | ||
|
@@ -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 | ||
|