Skip to content

github runner macos-10.15 is deprecated, bump to macos-11 #720

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish-go-tester-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
#use the strategy instead because we still use the native build
strategy:
matrix:
os: [ubuntu-18.04, windows-2019, macos-10.15]
os: [ubuntu-18.04, windows-2019, macos-11]
arch: [-amd64]
include:
- os: windows-2019
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-18.04, windows-2019, macos-10.15]
os: [ubuntu-18.04, windows-2019, macos-11]
arch: [-amd64]
include:
- os: windows-2019
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
CGO_CFLAGS: -mmacosx-version-min=10.11
CGO_LDFLAGS: -mmacosx-version-min=10.11
run: task go:build
if: matrix.os == 'macos-10.15'
if: matrix.os == 'macos-11'

# this will create `public/` dir with compressed full bin (<version>/<os>-<arch>.gz) and a json file
- name: Create autoupdate files
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
needs: build
strategy:
matrix: # to allow support for future architectures
os: [macos-10.15]
os: [macos-11]
arch: [-amd64]

runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
strategy:
fail-fast: false # if one os is failing continue nonetheless
matrix: # used to generate installers for different OS and not for runs-on
os: [ubuntu-18.04, windows-2019, macos-10.15]
os: [ubuntu-18.04, windows-2019, macos-11]
arch: [-amd64]
include:
- os: ubuntu-18.04
Expand All @@ -250,7 +250,7 @@ jobs:
executable-path: artifacts/windows/
extension: .exe
installer-extension: .exe
- os: macos-10.15
- os: macos-11
browser: safari
install-builder-name: osx
executable-path: 'skel/ArduinoCreateAgent.app/Contents/MacOS/'
Expand All @@ -275,7 +275,7 @@ jobs:
# zip artifacts do not mantain executable permission
- name: Make executable
run: chmod -v +x ${{ matrix.executable-path }}arduino-create-agent*
if: matrix.os == 'ubuntu-18.04' || matrix.os == 'macos-10.15'
if: matrix.os == 'ubuntu-18.04' || matrix.os == 'macos-11'

- name: Rename executable to Arduino_Create_Agent
run: mv -v ${{ matrix.executable-path }}arduino-create-agent${{ matrix.extension }} ${{ matrix.executable-path }}Arduino_Create_Agent${{ matrix.extension }}
Expand All @@ -286,7 +286,7 @@ jobs:

- name: get year
run: echo "YEAR=$(date "+%Y")" >> $GITHUB_ENV
if: matrix.os == 'macos-10.15'
if: matrix.os == 'macos-11'

- name: Generate Info.plist for MacOS
run: |
Expand All @@ -309,7 +309,7 @@ jobs:

</dict></plist>
EOF
if: matrix.os == 'macos-10.15'
if: matrix.os == 'macos-11'

- name: Save InstallBuilder license to file
run: echo "${{ secrets.INSTALLER_LICENSE }}" > /tmp/license.xml
Expand All @@ -320,7 +320,7 @@ jobs:

- name: Save macos signing certificate to file
run: echo "${{ secrets.INSTALLER_CERT_MAC_P12 }}" | base64 --decode > ${{ env.INSTALLER_CERT_MAC_P12 }}
if: matrix.os == 'macos-10.15'
if: matrix.os == 'macos-11'

# win(edge),mac(safari) -> CERT_INSTALL and win,mac:(ff,chrome) -> CHOICE_CERT_INSTALL
# installbuilder reads the env vars with certs paths and use it to sign the installer.
Expand All @@ -332,7 +332,7 @@ jobs:
cp -vr ArduinoCreateAgent-${GITHUB_REF##*/}-${{ matrix.install-builder-name }}-installer-CC${{matrix.installer-extension}} ArduinoCreateAgent-${GITHUB_REF##*/}-${{ matrix.install-builder-name }}${{ matrix.arch }}-installer-chrome${{matrix.installer-extension}}
mv -v ArduinoCreateAgent-${GITHUB_REF##*/}-${{ matrix.install-builder-name }}-installer-CC${{matrix.installer-extension}} ArduinoCreateAgent-${GITHUB_REF##*/}-${{ matrix.install-builder-name }}${{ matrix.arch }}-installer-firefox${{matrix.installer-extension}}
rm -r ArduinoCreateAgent-${GITHUB_REF##*/}-${{ matrix.install-builder-name }}-installer-C*
if: matrix.os == 'windows-2019' || matrix.os == 'macos-10.15'
if: matrix.os == 'windows-2019' || matrix.os == 'macos-11'

# linux
- name: Launch Bitrock installbuilder-20 with NO_CERT_INSTALL
Expand All @@ -359,7 +359,7 @@ jobs:
browser: [safari, firefox, chrome]
arch: [-amd64]

runs-on: macos-10.15
runs-on: macos-11
steps:
- name: Download artifact
uses: actions/download-artifact@v3
Expand Down