Skip to content

Commit

Permalink
Split bootstrap, run script direct
Browse files Browse the repository at this point in the history
  • Loading branch information
aBozowski committed May 24, 2022
1 parent 366d91b commit c4186dd
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .github/workflows/chef.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,13 @@ jobs:
token: ${{ github.token }}
attempt_limit: 3
attempt_delay: 2000
- name: bootstrap
run: scripts/bootstrap.sh
- name: lighting-app Linux
run: scripts/run_in_build_env.sh "cd examples/chef; ./chef.py -br --use_zzz -d lighting-app -t linux;"
run: |
source ./scripts/activate.sh
cd examples/chef
./chef.py -br --use_zzz -d lighting-app -t linux
chef_esp32:
name: Chef ESP32 lighting-app
Expand All @@ -64,9 +69,13 @@ jobs:
token: ${{ github.token }}
attempt_limit: 3
attempt_delay: 2000

- name: bootstrap
run: scripts/bootstrap.sh
- name: lighting-app ESP32
run: scripts/run_in_build_env.sh "cd examples/chef; ./chef.py -br --use_zzz -d lighting-app -t esp32;"
run: |
source ./scripts.activate.sh
cd examples/chef
./chef.py -br --use_zzz -d lighting-app -t esp32
chef_nrfconnect:
name: Chef NRFConnect lighting-app
Expand All @@ -87,5 +96,11 @@ jobs:
token: ${{ github.token }}
attempt_limit: 3
attempt_delay: 2000
- name: bootstrap
run: scripts/bootstrap.sh
- name: lighting-app NRFConnect
run: scripts/run_in_build_env.sh "cd examples/chef; export GNUARMEMB_TOOLCHAIN_PATH=$PW_ARM_CIPD_INSTALL_DIR; ./chef.py -br --use_zzz -d lighting-app -t nrfconnect;"
run: |
source ./scripts/activate.sh
cd examples/chef
export GNUARMEMB_TOOLCHAIN_PATH="$PW_ARM_CIPD_INSTALL_DIR"
./chef.py -br --use_zzz -d lighting-app -t nrfconnect

0 comments on commit c4186dd

Please sign in to comment.