Skip to content

Commit

Permalink
ci: pin macos runners to 13 (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptiurin authored May 3, 2024
1 parent ada3930 commit 41f569e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/nightly-v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,26 @@ jobs:
strategy:
fail-fast: false # finish all jobs even if one fails
max-parallel: 2
matrix:
os: ['macos-latest', 'windows-latest', 'ubuntu-latest']
matrix:
os: ['macos-13', 'windows-latest', 'ubuntu-latest']
go-version: ['1.16', '1.17', '1.18', '1.19']
steps:
- name: Check out code
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}

- name: Install go tools
run: go get golang.org/x/tools/cmd/cover

- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: "3.7"

- name: Setup database and engine
id: setup
uses: firebolt-db/integration-testing-setup@v1
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
colour=$(if [ $percentage_whole -ge 80 ]; then echo "green"; else echo "orange"; fi)
echo "colour=$colour" >> $GITHUB_OUTPUT
echo "covered=$percentage_whole" >> $GITHUB_OUTPUT
- name: Create Coverage Badge
uses: schneegans/[email protected]
continue-on-error: true
Expand All @@ -77,7 +77,7 @@ jobs:
label: Coverage
message: ${{steps.coverage.outputs.covered}}%
color: ${{steps.coverage.outputs.colour}}

- name: Slack Notify of failure
if: failure()
id: slack
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false # finish all jobs even if one fails
max-parallel: 2
matrix:
os: ['macos-latest', 'windows-latest', 'ubuntu-latest']
os: ['macos-13', 'windows-latest', 'ubuntu-latest']
go-version: ['1.16', '1.17', '1.18', '1.19']
steps:
- name: Check out code
Expand Down

0 comments on commit 41f569e

Please sign in to comment.