Skip to content

Commit

Permalink
ci: Pin macos to macos-13 for now
Browse files Browse the repository at this point in the history
macos-latest now runs on Apple Silicon, which fails one test
and probably still needs extra work for the packaging to work.
Until that's figured out, run on macos-13.
  • Loading branch information
arch1t3cht committed May 21, 2024
1 parent 246dbd7 commit d1916fc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ jobs:
-Dvapoursynth=enabled
- {
name: macOS Debug,
os: macos-latest,
os: macos-13,
buildtype: debugoptimized,
args: -Ddefault_library=static -Dbuild_osx_bundle=true -Dlocal_boost=true --force-fallback-for=ffms2
}
- {
name: macOS Release,
os: macos-latest,
os: macos-13,
buildtype: release,
args: -Ddefault_library=static -Dbuild_osx_bundle=true -Dlocal_boost=true --force-fallback-for=ffms2
}
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
popd
- name: Install dependencies (MacOS)
if: matrix.config.os == 'macos-latest'
if: startsWith(matrix.config.os, 'macos-')
run: |
export HOMEBREW_NO_INSTALL_CLEANUP=1
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
Expand Down Expand Up @@ -170,14 +170,14 @@ jobs:

# macOS artifacts
- name: Generate macOS installer
if: matrix.config.os == 'macos-latest'
if: startsWith(matrix.config.os, 'macos-')
run: |
meson compile osx-bundle -C build
meson compile osx-build-dmg -C build
- name: Upload artifacts - macOS dmg
uses: actions/upload-artifact@v3
if: matrix.config.os == 'macos-latest'
if: startsWith(matrix.config.os, 'macos-')
with:
name: ${{ matrix.config.name }} - installer
path: build/Aegisub-*.dmg
Expand Down

0 comments on commit d1916fc

Please sign in to comment.