Skip to content

Commit

Permalink
WIP: Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jakkra committed Aug 8, 2023
1 parent 6a035c2 commit 37d0e02
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,28 @@ jobs:
- name: Install deps
run: |
apt-get --no-install-recommends -y install git
- name: Clone repository
uses: actions/checkout@v2
with:
submodules: recursive

- name: Show nrfutil details
run: |
nrfutil --version
nrfutil list
nrfutil toolchain-manager list
- name: Build ZSWatch Binaries
run: west build --board ${{ matrix.board }} app
run: |
cd app
pwd
ls -la
printenv
nrfutil toolchain-manager launch /bin/bash -- -c '\
west build -b ${{ matrix.board }} \
-p always \
'
Posix:
name: Posix build
Expand Down

0 comments on commit 37d0e02

Please sign in to comment.