Skip to content

Commit

Permalink
Reactivate OSX builds (#396)
Browse files Browse the repository at this point in the history
* Reactivate OSX builds
  • Loading branch information
josephine-wolf-oberholtzer authored Aug 24, 2024
1 parent 38ad310 commit fce9ca7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
13 changes: 11 additions & 2 deletions .github/actions/supercollider/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@ runs:
id: current-date
run: echo "stamp=$(date '+%Y-%m-%d')" >> $GITHUB_OUTPUT
shell: bash
- name: '[macOS] Setup ENV'
if: runner.os == 'macOS'
run: |
echo CMAKE_OSX_ARCHITECTURES="x86_64" >> $GITHUB_ENV;
echo HOMEBREW_NO_ANALYTICS=1 >> $GITHUB_ENV;
echo HOMEBREW_NO_AUTO_UPDATE=1 >> $GITHUB_ENV;
echo HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 >> $GITHUB_ENV;
echo HOMEBREW_NO_INSTALL_CLEANUP=1 >> $GITHUB_ENV;
shell: bash
- name: '[macOS] Cache Homebrew'
id: cache-homebrew
if: runner.os == 'macOS'
Expand Down Expand Up @@ -114,14 +123,14 @@ runs:
cmake \
-DCMAKE_PREFIX_PATH=`brew --prefix qt5` \
-DRULE_LAUNCH_COMPILE=ccache \
-DSC_VERIFY_APP=ON \
-DSC_VERIFY_APP=OFF \
-DSC_ED=OFF \
-DSC_EL=OFF \
-DSC_IDE=OFF \
-DSC_QT=OFF \
-DSC_VIM=OFF \
-DSUPERNOVA=ON \
-G Xcode \
-G"Xcode"\
..
shell: bash
- name: '[Linux] Build'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ jobs:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
include:
# - os: macos-latest
# python-version: "3.12"
- os: macos-12
python-version: "3.12"
- os: windows-latest
python-version: "3.12"
timeout-minutes: 45
Expand Down

0 comments on commit fce9ca7

Please sign in to comment.