d300a6a268
Pull in the CI docker image v0.22.0, which contains the Zephyr SDK 0.14.0 release, and use the Zephyr SDK 0.14.0 for building and testing Zephyr in the CI. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
25 lines
521 B
YAML
25 lines
521 B
YAML
name: Error numbers
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/errno.yml'
|
|
- 'lib/libc/minimal/include/errno.h'
|
|
- 'scripts/ci/errno.py'
|
|
|
|
jobs:
|
|
check-errno:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: zephyrprojectrtos/ci:v0.22.0
|
|
env:
|
|
ZEPHYR_SDK_INSTALL_DIR: /opt/toolchains/zephyr-sdk-0.14.0
|
|
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Run errno.py
|
|
run: |
|
|
export ZEPHYR_BASE=${PWD}
|
|
./scripts/ci/errno.py
|