Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
vChavezB authored Apr 12, 2024
1 parent 9f74a2d commit 1f43c55
Showing 1 changed file with 18 additions and 19 deletions.
37 changes: 18 additions & 19 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
pull_request:

jobs:

test:
runs-on: ubuntu-22.04
steps:
Expand All @@ -15,23 +14,23 @@ jobs:
- name: Run Test
run: |
find / -name controllers.py
build:
runs-on: ubuntu-22.04
container: ghcr.io/zephyrproject-rtos/ci:v0.26.2
env:
CMAKE_PREFIX_PATH: /opt/toolchains
ZEPHYR_VERSION: 3.6.0
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Initialize
run: |
cd /tmp/
west init --mr v$ZEPHYR_VERSION
west update -o=--depth=1 -n
build:
runs-on: ubuntu-22.04
container: ghcr.io/zephyrproject-rtos/ci:v0.26.2
env:
CMAKE_PREFIX_PATH: /opt/toolchains
ZEPHYR_VERSION: 3.6.0
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Initialize
run: |
cd /tmp/
west init --mr v$ZEPHYR_VERSION
west update -o=--depth=1 -n
- name: Build
working-directory: /tmp/
run: |
west build $GITHUB_WORKSPACE/samples/uptime -b native_sim --build-dir $GITHUB_WORKSPACE
- name: Build
working-directory: /tmp/
run: |
west build $GITHUB_WORKSPACE/samples/uptime -b native_sim --build-dir $GITHUB_WORKSPACE

0 comments on commit 1f43c55

Please sign in to comment.