Skip to content

Commit 2e85fa6

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

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/build_avr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
sudo apt-get -y install cflow
2828
- name: Build
2929
run: |
30-
PWD=`pwd`
31-
cd examples/avr/basic_usage/build
30+
cd examples/avr/
31+
cd basic_usage/build/
3232
make clean
3333
make build DEVICE=atmega328p F_CPU=16000000L
34-
cd $PWD
35-
cd examples/avr/basic_usage_callbacks/build
34+
cd ../../
35+
cd basic_usage_callbacks/build/
3636
make clean
3737
make build DEVICE=atmega328p F_CPU=16000000L

.github/workflows/build_linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
sudo apt-get -y install cflow
2828
- name: Build
2929
run: |
30-
PWD=`pwd`
31-
cd examples/linux/basic_usage/build
30+
cd examples/linux/
31+
cd basic_usage/build/
3232
make clean
3333
make build
34-
cd $PWD
35-
cd examples/linux/basic_usage_callbacks/build
34+
cd ../../
35+
cd basic_usage_callbacks/build/
3636
make clean
3737
make build

0 commit comments

Comments
 (0)