CI: Update worker base OS version
This commit is contained in:
parent
60dc920701
commit
393df6762e
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
@ -162,7 +162,7 @@ jobs:
|
|||||||
macOS:
|
macOS:
|
||||||
permissions:
|
permissions:
|
||||||
contents: none
|
contents: none
|
||||||
runs-on: macos-10.15
|
runs-on: macos-12
|
||||||
needs: Fetch-Source
|
needs: Fetch-Source
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
@ -186,6 +186,12 @@ jobs:
|
|||||||
|
|
||||||
- name: Export NuttX Repo SHA
|
- name: Export NuttX Repo SHA
|
||||||
run: echo "nuttx_sha=`git -C sources/nuttx rev-parse HEAD`" >> $GITHUB_ENV
|
run: echo "nuttx_sha=`git -C sources/nuttx rev-parse HEAD`" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
# Released version of Cython has issues with Python 11. Set runner to use Python 3.10
|
||||||
|
# https://github.com/cython/cython/issues/4500
|
||||||
|
- uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: '3.10'
|
||||||
- name: Run Builds
|
- name: Run Builds
|
||||||
run: |
|
run: |
|
||||||
echo "::add-matcher::sources/nuttx/.github/gcc.json"
|
echo "::add-matcher::sources/nuttx/.github/gcc.json"
|
||||||
|
2
.github/workflows/check.yml
vendored
2
.github/workflows/check.yml
vendored
@ -24,7 +24,7 @@ permissions:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check:
|
check:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout nuttx repo
|
- name: Checkout nuttx repo
|
||||||
|
Loading…
Reference in New Issue
Block a user