Skip to content

Commit 4bea4ac

Browse files
chore: update macos runners to v13 (#8670)
* chore: update macos runners to v13 * chore: bump to alpha-8 * empty-commit
1 parent a00d3e4 commit 4bea4ac

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/workflows/build-and-release-desktop.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
needs: [setup]
5858
strategy:
5959
matrix:
60-
os: [ubuntu-22.04, macos-12, windows-2019]
60+
os: [ubuntu-22.04, macos-13, windows-2019]
6161
fail-fast: true
6262
env:
6363
VERSION: ${{ needs.setup.outputs.version }}
@@ -96,7 +96,7 @@ jobs:
9696

9797
- name: Set deployment target (macOS)
9898
run: echo "MACOSX_DEPLOYMENT_TARGET=10.14" >> $GITHUB_ENV # TODO: set this to 10.12 once rocksDB issue is fixed
99-
if: matrix.os == 'macos-12'
99+
if: matrix.os == 'macos-13'
100100

101101
- name: Install required packages (Linux)
102102
run: |
@@ -146,7 +146,7 @@ jobs:
146146
APPLE_ID: ${{ secrets.APPLE_ID }}
147147
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
148148
working-directory: packages/desktop
149-
if: matrix.os == 'macos-12'
149+
if: matrix.os == 'macos-13'
150150

151151
- name: Build Electron app (Windows)
152152
run: yarn compile:${env:STAGE}:win
@@ -223,7 +223,7 @@ jobs:
223223
- name: Compute checksums (macOS)
224224
run: for i in `ls | grep 'firefly-*'` ; do shasum -a 256 $i | awk {'print $1'} > $i.sha256 ; done
225225
working-directory: packages/desktop/out
226-
if: matrix.os == 'macos-12'
226+
if: matrix.os == 'macos-13'
227227

228228
- name: Compute checksums (Windows)
229229
run: Get-ChildItem "." -Filter firefly-* | Foreach-Object { $(Get-FileHash -Path $_.FullName -Algorithm SHA256).Hash | Set-Content ($_.FullName + '.sha256') }
@@ -263,7 +263,7 @@ jobs:
263263
- name: Downloading artifacts
264264
uses: actions/download-artifact@v4
265265
with:
266-
name: firefly-desktop-macos-12
266+
name: firefly-desktop-macos-13
267267
path: assets
268268

269269
- name: Downloading artifacts

.github/workflows/build-desktop-test.v1.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: ${{ always() }}
1212
strategy:
1313
matrix:
14-
os: [ubuntu-18.04, macos-12, windows-2019]
14+
os: [ubuntu-18.04, macos-13, windows-2019]
1515
fail-fast: true
1616
env:
1717
VERSION: '1.7.2-test'
@@ -51,7 +51,7 @@ jobs:
5151

5252
- name: Set deployment target (macOS)
5353
run: echo "MACOSX_DEPLOYMENT_TARGET=10.12" >> $GITHUB_ENV
54-
if: matrix.os == 'macos-12'
54+
if: matrix.os == 'macos-13'
5555

5656
- name: Install required packages (Linux)
5757
run: |
@@ -83,7 +83,7 @@ jobs:
8383
- name: Install Sentry CLI
8484
# Yarn has issues putting binaries in the PATH on Windows
8585
run: npm i -g @sentry/cli
86-
if: ${{ startsWith(github.ref, 'refs/tags/desktop') && matrix.os != 'macos-12' }}
86+
if: ${{ startsWith(github.ref, 'refs/tags/desktop') && matrix.os != 'macos-13' }}
8787

8888
# - name: Strip backend debug info and upload to Sentry (Linux)
8989
# run: |
@@ -131,7 +131,7 @@ jobs:
131131
APPLE_ID: ${{ secrets.APPLE_ID }}
132132
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
133133
working-directory: packages/desktop
134-
if: matrix.os == 'macos-12'
134+
if: matrix.os == 'macos-13'
135135

136136
- name: Build Electron app (Windows)
137137
run: yarn compile:${env:STAGE}:win
@@ -170,7 +170,7 @@ jobs:
170170
- name: Compute checksums (macOS)
171171
run: for i in `ls | grep 'firefly-desktop*'` ; do shasum -a 256 $i | awk {'print $1'} > $i.sha256 ; done
172172
working-directory: packages/desktop/out
173-
if: matrix.os == 'macos-12'
173+
if: matrix.os == 'macos-13'
174174

175175
- name: Compute checksums (Windows)
176176
run: Get-ChildItem "." -Filter firefly-desktop* | Foreach-Object { $(Get-FileHash -Path $_.FullName -Algorithm SHA256).Hash | Set-Content ($_.FullName + '.sha256') }

.github/workflows/build-desktop-test.v2.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: ${{ always() }}
1212
strategy:
1313
matrix:
14-
os: [ ubuntu-22.04, macos-12, windows-2019 ]
14+
os: [ ubuntu-22.04, macos-13, windows-2019 ]
1515
fail-fast: true
1616
env:
1717
VERSION: '2.1.3-test'
@@ -50,7 +50,7 @@ jobs:
5050

5151
- name: Set deployment target (macOS)
5252
run: echo "MACOSX_DEPLOYMENT_TARGET=10.14" >> $GITHUB_ENV # TODO: set this to 10.12 once rocksDB issue is fixed
53-
if: matrix.os == 'macos-12'
53+
if: matrix.os == 'macos-13'
5454

5555
- name: Install required packages (Linux)
5656
run: |
@@ -100,7 +100,7 @@ jobs:
100100
APPLE_ID: ${{ secrets.APPLE_ID }}
101101
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
102102
working-directory: packages/desktop
103-
if: matrix.os == 'macos-12'
103+
if: matrix.os == 'macos-13'
104104

105105
- name: Build Electron app (Windows)
106106
run: yarn compile:${env:STAGE}:win

.github/workflows/build-desktop.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
required: true
1212
type: choice
1313
options:
14-
- macos-12
14+
- macos-13
1515
- ubuntu-22.04
1616
- windows-2019
1717
stage:
@@ -68,7 +68,7 @@ jobs:
6868

6969
- name: Set deployment target (macOS)
7070
run: echo "MACOSX_DEPLOYMENT_TARGET=10.14" >> $GITHUB_ENV # TODO: set this to 10.12 once rocksDB issue is fixed
71-
if: matrix.os == 'macos-12'
71+
if: matrix.os == 'macos-13'
7272

7373
- name: Install required packages (Linux)
7474
run: |
@@ -118,7 +118,7 @@ jobs:
118118
APPLE_ID: ${{ secrets.APPLE_ID }}
119119
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
120120
working-directory: packages/desktop
121-
if: matrix.os == 'macos-12'
121+
if: matrix.os == 'macos-13'
122122

123123
- name: Build Electron app (Windows)
124124
run: yarn compile:${env:STAGE}:win
@@ -157,7 +157,7 @@ jobs:
157157
- name: Compute checksums (macOS)
158158
run: for i in `ls | grep 'firefly-*'` ; do shasum -a 256 $i | awk {'print $1'} > $i.sha256 ; done
159159
working-directory: packages/desktop/out
160-
if: matrix.os == 'macos-12'
160+
if: matrix.os == 'macos-13'
161161

162162
- name: Compute checksums (Windows)
163163
run: Get-ChildItem "." -Filter firefly-* | Foreach-Object { $(Get-FileHash -Path $_.FullName -Algorithm SHA256).Hash | Set-Content ($_.FullName + '.sha256') }

packages/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "desktop",
33
"productName": "Firefly Shimmer",
4-
"version": "2.2.0-alpha-1",
4+
"version": "2.2.0-alpha-8",
55
"description": "Official wallet application of Shimmer",
66
"main": "public/build/main.js",
77
"repository": "[email protected]:iotaledger/firefly.git",

0 commit comments

Comments
 (0)