-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: remove bsim from buildkit execution
We now have a dedicated action for this. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
- Loading branch information
Showing
2 changed files
with
85 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: Bluetooth Tests | ||
|
||
on: | ||
pull_request_target: | ||
paths: | ||
- "west.yml" | ||
- "subsys/bluetooth/**" | ||
- "tests/bluetooth/bsim_bt/**" | ||
- "boards/posix/**" | ||
- "soc/posix/**" | ||
- "arch/posix/**" | ||
|
||
jobs: | ||
bsim-build-cancel: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/cancel-workflow-action@0.6.0 | ||
with: | ||
access_token: ${{ github.token }} | ||
bsim-build: | ||
runs-on: ubuntu-latest | ||
needs: bsim-build-cancel | ||
container: | ||
image: zephyrprojectrtos/ci:v0.17.0-rc1 | ||
options: '--entrypoint /bin/bash' | ||
env: | ||
ZEPHYR_TOOLCHAIN_VARIANT: zephyr | ||
ZEPHYR_SDK_INSTALL_DIR: /opt/toolchains/zephyr-sdk-0.12.4 | ||
CLANG_ROOT_DIR: /usr/lib/llvm-12 | ||
BSIM_OUT_PATH: /opt/bsim/ | ||
BSIM_COMPONENTS_PATH: /opt/bsim/components | ||
EDTT_PATH: ../tools/edtt | ||
bsim_bt_test_results_file: ./bsim_bt_out/bsim_results.xml | ||
steps: | ||
- name: Update PATH for west | ||
run: | | ||
echo "$HOME/.local/bin" >> $GITHUB_PATH | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
fetch-depth: 0 | ||
|
||
- name: west setup | ||
run: | | ||
west init -l . || true | ||
west update | ||
- name: Run Bluetooth Tests with BSIM | ||
run: | | ||
#source zephyr-env.sh | ||
export ZEPHYR_BASE=${PWD} | ||
WORK_DIR=${ZEPHYR_BASE}/bsim_bt_out tests/bluetooth/bsim_bt/compile.sh | ||
RESULTS_FILE=${ZEPHYR_BASE}/${bsim_bt_test_results_file} \ | ||
SEARCH_PATH=tests/bluetooth/bsim_bt/ tests/bluetooth/bsim_bt/run_parallel.sh | ||
- name: Upload Test Results | ||
if: always() | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Bluetooth Test Results | ||
path: ./bsim_bt_out/bsim_results.xml | ||
|
||
publish-test-results: | ||
name: "Publish Unit Tests Results" | ||
needs: bsim-build | ||
runs-on: ubuntu-20.04 | ||
# the build-and-test job might be skipped, we don't need to run this job then | ||
if: success() || failure() | ||
|
||
steps: | ||
- name: Download Artifacts | ||
uses: actions/download-artifact@v2 | ||
with: | ||
path: artifacts | ||
|
||
- name: Publish Unit Test Results | ||
uses: EnricoMi/publish-unit-test-result-action@v1.12 | ||
with: | ||
check_name: Bluetooth Test Results | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
files: "**/bsim_results.xml" | ||
omment_on_pr: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters