mirror of
https://github.com/micropython/micropython.git
synced 2026-01-07 04:30:24 +01:00
tools/ci.sh: Put echo of CI path in a separate function.
Because the setup functions may print other information which should not be added to the path. Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
4
.github/workflows/ports_esp32.yml
vendored
4
.github/workflows/ports_esp32.yml
vendored
@@ -18,7 +18,7 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install packages
|
||||
run: source tools/ci.sh && ci_esp32_idf3_setup >> $GITHUB_PATH
|
||||
run: source tools/ci.sh && ci_esp32_idf3_setup && ci_esp32_idf3_path >> $GITHUB_PATH
|
||||
- name: Build
|
||||
env:
|
||||
IDF_PATH: ${{ github.workspace }}/esp-idf
|
||||
@@ -29,7 +29,7 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install packages
|
||||
run: source tools/ci.sh && ci_esp32_idf4_setup >> $GITHUB_PATH
|
||||
run: source tools/ci.sh && ci_esp32_idf4_setup && ci_esp32_idf4_path >> $GITHUB_PATH
|
||||
- name: Build
|
||||
env:
|
||||
IDF_PATH: ${{ github.workspace }}/esp-idf
|
||||
|
||||
2
.github/workflows/ports_esp8266.yml
vendored
2
.github/workflows/ports_esp8266.yml
vendored
@@ -18,6 +18,6 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install packages
|
||||
run: source tools/ci.sh && ci_esp8266_setup >> $GITHUB_PATH
|
||||
run: source tools/ci.sh && ci_esp8266_setup && ci_esp8266_path >> $GITHUB_PATH
|
||||
- name: Build
|
||||
run: source tools/ci.sh && ci_esp8266_build
|
||||
|
||||
Reference in New Issue
Block a user