Skip to content

Commit

Permalink
Merge pull request Universal-Debloater-Alliance#791 from Universal-De…
Browse files Browse the repository at this point in the history
…bloater-Alliance/722-bugci-latest-release-artifact-not-working-on-macos-ventura-intel

build(ci): add runner for MacOS with Intel CPU
  • Loading branch information
AnonymousWP authored Jan 12, 2025
2 parents 6991c2a + 467aa37 commit ad4598e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,20 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
build_target: [linux, macos, windows]
build_target: [linux, macos, macos-13, windows]
update_feature: [self-update, no-self-update]
exclude:
- build_target: windows
update_feature: no-self-update
- build_target: macos-13
os: macos-latest # Avoid duplicate runs on macos-latest
include:
- build_target: linux
os: ubuntu-latest
- build_target: macos
os: macos-latest
- build_target: macos-13
os: macos-13
- build_target: windows
os: windows-latest
- update_feature: self-update
Expand Down Expand Up @@ -52,7 +56,7 @@ jobs:
if: matrix.os != 'windows-latest'
run: tar -czf uad-ng${{ matrix.update_name }}-${{ matrix.build_target }}{.tar.gz,}
- name: Install coreutils for macOS
if: matrix.os == 'macos-latest'
if: startsWith(matrix.os, 'macos')
run: brew install coreutils
- name: Create checksums for binaries and archives [Windows]
if: matrix.os == 'windows-latest'
Expand Down

0 comments on commit ad4598e

Please sign in to comment.