Skip to content

Commit

Permalink
Test impact of bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
aBozowski committed May 24, 2022
1 parent 3363130 commit 7fad5ec
Showing 1 changed file with 7 additions and 23 deletions.
30 changes: 7 additions & 23 deletions .github/workflows/chef.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ concurrency:
jobs:

validate_zzz:
name: Chef - Validate cached ZAP files
name: Chef - Validate cached ZAP output
runs-on: ubuntu-latest
if: github.actor != 'restyled-io[bot]'
container:
Expand All @@ -47,7 +47,7 @@ jobs:
python3 chef.py --validate_zzz
chef_linux:
name: Chef Linux lighting-app
name: Chef - Linux CI Examples
needs: validate_zzz
runs-on: ubuntu-latest
if: github.actor != 'restyled-io[bot]'
Expand All @@ -65,18 +65,13 @@ jobs:
token: ${{ github.token }}
attempt_limit: 3
attempt_delay: 2000
- name: bootstrap
shell: bash
run: source scripts/bootstrap.sh
- name: lighting-app Linux
shell: bash
run: |
source ./scripts/activate.sh
cd examples/chef
./chef.py -br --use_zzz -d lighting-app -t linux
./scripts/run_in_build_env.sh "cd examples/chef; ./chef.py -br --use_zzz -d lighting-app -t linux;"
chef_esp32:
name: Chef ESP32 lighting-app
name: Chef - ESP32 CI Examples
needs: validate_zzz
runs-on: ubuntu-latest
if: github.actor != 'restyled-io[bot]'
Expand All @@ -94,18 +89,13 @@ jobs:
token: ${{ github.token }}
attempt_limit: 3
attempt_delay: 2000
- name: bootstrap
shell: bash
run: source scripts/bootstrap.sh
- name: lighting-app ESP32
shell: bash
run: |
source ./scripts/activate.sh
cd examples/chef
./chef.py -br --use_zzz -d lighting-app -t esp32
./scripts/run_in_build_env.sh "cd examples/chef; ./chef.py -br --use_zzz -d lighting-app -t esp32;"
chef_nrfconnect:
name: Chef NRFConnect lighting-app
name: Chef - NRFConnect CI Examples
needs: validate_zzz
runs-on: ubuntu-latest
if: github.actor != 'restyled-io[bot]'
Expand All @@ -123,13 +113,7 @@ jobs:
token: ${{ github.token }}
attempt_limit: 3
attempt_delay: 2000
- name: bootstrap
shell: bash
run: source scripts/bootstrap.sh
- name: lighting-app NRFConnect
shell: bash
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
./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;

0 comments on commit 7fad5ec

Please sign in to comment.