Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactoring and maintenance for new drivers #255

Merged
merged 11 commits into from
Aug 6, 2024
9 changes: 9 additions & 0 deletions .github/workflows/qa-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,15 @@ jobs:
name: compliance.xml
path: workspace/bridle/compliance.xml

- name: Convert compliance test reports to annotations
uses: mikepenz/action-junit-report@v4
with:
check_name: compliance-report (bridle)
report_paths: "**/bridle/compliance.xml"
require_tests: true
fail_on_failure: false
if: always()

- name: Check warnings
working-directory: workspace/bridle
run: |
Expand Down
30 changes: 25 additions & 5 deletions .github/workflows/qa-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,14 +127,19 @@ jobs:
west twister --verbose --jobs 6 \
--retry-failed 5 --retry-interval 60 \
--outdir twister-out --no-clean --inline-logs \
--enable-size-report --platform-reports \
--alt-config-root bridle/zephyr/alt-config/samples \
--integration --no-detailed-test-id \
--testsuite-root bridle/samples \
--testsuite-root zephyr/samples \
--tag bridle \
--tag zephyr

- name: Upload integration test logging
uses: actions/upload-artifact@v4
with:
name: twister-samples.log
path: workspace/twister-out/twister.log

- name: Upload integration test results
uses: actions/upload-artifact@v4
with:
Expand All @@ -151,7 +156,7 @@ jobs:
if: always()

qa-tests-integration:
name: Run integration tests for tests
name: Run integration tests from upstream
if: github.repository_owner == 'tiacsys'
runs-on: [self-hosted, ci-32g-x8, linux, x64, container]
container:
Expand Down Expand Up @@ -241,14 +246,19 @@ jobs:
west twister --verbose --jobs 6 \
--retry-failed 5 --retry-interval 60 \
--outdir twister-out --no-clean --inline-logs \
--enable-size-report --platform-reports \
--alt-config-root bridle/zephyr/alt-config/tests \
--integration --no-detailed-test-id \
--testsuite-root bridle/tests \
--testsuite-root zephyr/tests \
--tag bridle \
--tag zephyr

- name: Upload integration test logging
uses: actions/upload-artifact@v4
with:
name: twister-tests.log
path: workspace/twister-out/twister.log

- name: Upload integration test results
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -364,12 +374,17 @@ jobs:
#
west twister --verbose --jobs 6 \
--outdir twister-out --no-clean --inline-logs \
--enable-size-report --platform-reports \
--integration --cmake-only \
--quarantine-list bridle/tests/quarantine.yaml \
--testsuite-root bridle/tests/shields/grove/dts_bindings \
--testsuite-root bridle/tests/shields/x_grove_testbed/dts_bindings

- name: Upload integration test logging
uses: actions/upload-artifact@v4
with:
name: twister-shields.log
path: workspace/twister-out/twister.log

- name: Upload integration test results
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -472,7 +487,6 @@ jobs:
west twister --verbose --jobs 2 \
--retry-failed 5 --retry-interval 60 \
--outdir twister-out --no-clean --inline-logs \
--enable-size-report --platform-reports \
--device-testing --hardware-map ${HARDWARE_MAP} \
--extra-args SHIELD="loopback_test_tmph" \
--alt-config-root bridle/zephyr/alt-config/tests \
Expand All @@ -489,6 +503,12 @@ jobs:
--tag uart \
--tag can

- name: Upload integration test logging
uses: actions/upload-artifact@v4
with:
name: twister-targets.log
path: workspace/twister-out/twister.log

- name: Upload integration test results
uses: actions/upload-artifact@v4
with:
Expand Down
1 change: 1 addition & 0 deletions doc/bridle/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ information about specific |BRIDLE| releases.
:maxdepth: 1

releases/release-notes-3.7.0
releases/release-notes-3.6.1
releases/release-notes-3.6.0
releases/release-notes-3.5.1
releases/release-notes-3.5.0
Expand Down
Loading