Skip to content

Commit

Permalink
ci: pin windows builds to windows-2019 (#9537)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcous authored Feb 22, 2022
1 parent 459be85 commit 156971c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/api-test-lint-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
needs: [lint]
strategy:
matrix:
os: ['windows-latest', 'ubuntu-18.04', 'macos-latest']
os: ['windows-2019', 'ubuntu-18.04', 'macos-latest']
runs-on: '${{ matrix.os }}'
steps:
- uses: 'actions/checkout@v2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/app-test-build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
# to run cross-platform just like builds, might as well do them in the same job
strategy:
matrix:
os: ['windows-latest', 'ubuntu-18.04', 'macos-latest']
os: ['windows-2019', 'ubuntu-18.04', 'macos-latest']
name: 'opentrons app backend unit tests and build'
runs-on: ${{ matrix.os }}
steps:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/shared-data-test-lint-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ on:
- 'shared-data/*/**'
workflow_dispatch:


defaults:
run:
shell: bash
Expand All @@ -45,14 +44,14 @@ jobs:
project: 'shared-data/python'
- name: Lint
run: make -C shared-data/python lint

python-test:
name: 'shared-data package python tests'
timeout-minutes: 20
needs: [python-lint]
strategy:
matrix:
os: ['windows-latest', 'ubuntu-18.04', 'macos-latest']
os: ['windows-2019', 'ubuntu-18.04', 'macos-latest']
runs-on: '${{ matrix.os }}'
steps:
- uses: 'actions/checkout@v2'
Expand Down
4 changes: 2 additions & 2 deletions app-shell/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ dist-ubuntu-latest: dist-linux
.PHONY: dist-ubuntu-18.04
dist-ubuntu-18.04: dist-linux

.PHONY: dist-windows-latest
dist-windows-latest: dist-win
.PHONY: dist-windows-2019
dist-windows-2019: dist-win

# copy distributable artifacts to the publish directory
# update files will not exist for all OSs, so noop if cp errors
Expand Down

0 comments on commit 156971c

Please sign in to comment.