Skip to content

Commit ec98350

Browse files
committed
CI fix build next AVR and linux examples
1 parent e05ab33 commit ec98350

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/build_avr.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,11 @@ jobs:
2727
sudo apt-get -y install cflow
2828
- name: Build
2929
run: |
30+
PWD=`pwd`
3031
cd examples/avr/basic_usage/build
3132
make clean
3233
make build DEVICE=atmega328p F_CPU=16000000L
34+
cd $PWD
3335
cd examples/avr/basic_usage_callbacks/build
3436
make clean
3537
make build DEVICE=atmega328p F_CPU=16000000L

.github/workflows/build_linux.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,11 @@ jobs:
2727
sudo apt-get -y install cflow
2828
- name: Build
2929
run: |
30+
PWD=`pwd`
3031
cd examples/linux/basic_usage/build
3132
make clean
3233
make build
34+
cd $PWD
3335
cd examples/linux/basic_usage_callbacks/build
3436
make clean
3537
make build

0 commit comments

Comments
 (0)