Skip to content

Commit 33da4d2

Browse files
[#426] try macos-13 for binary building
1 parent fcd5930 commit 33da4d2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/make-binary.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
make-binary:
1212
strategy:
1313
matrix:
14-
os: [ubuntu-20.04, macos-12]
14+
os: [ubuntu-20.04, macos-13]
1515
fail-fast: false
1616
runs-on: ${{ matrix.os }}
1717
steps:
@@ -21,7 +21,7 @@ jobs:
2121
sudo apt update
2222
sudo apt install -y build-essential squashfs-tools curl gcc make bison
2323
- name: 'Install MacOs dependencies'
24-
if: matrix.os == 'macos-12'
24+
if: matrix.os == 'macos-13'
2525
run: |
2626
brew install squashfs
2727
- uses: actions/checkout@v4
@@ -36,7 +36,7 @@ jobs:
3636
chmod +x ./rubyc
3737
BUNDLE_WITHOUT=development:test ./rubyc --openssl-dir=/etc/ssl ./uffizzi --output=${{ inputs.linux-bin-path }}
3838
- name: 'Create Darwin Bin'
39-
if: matrix.os == 'macos-12'
39+
if: matrix.os == 'macos-13'
4040
run: |
4141
export PATH="$(brew --prefix)/opt/openssl@1.1/bin:$PATH"
4242
export LDFLAGS="-L$(brew --prefix)/opt/openssl@1.1/lib"
@@ -55,7 +55,7 @@ jobs:
5555
path: ${{ inputs.linux-bin-path }}
5656
- name: Upload Artifacts
5757
uses: actions/upload-artifact@v4
58-
if: matrix.os == 'macos-12'
58+
if: matrix.os == 'macos-13'
5959
with:
6060
name: ${{ inputs.darwin-bin-path }}
6161
path: ${{ inputs.darwin-bin-path }}

0 commit comments

Comments
 (0)