Bump step-security/harden-runner from 2.10.4 to 2.11.0 #90
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
name: E2E Tests | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/e2e_test.yaml' | |
- '.github/matrix_includes.json' | |
- 'test/**' | |
- '!test/tests.py' | |
- '!**/*.md' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
matrix_prep: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: JoshuaTheMiller/conditional-build-matrix@81b51eb8d89e07b86404934b5fecde1cea1163a5 # v2.0.1 | |
id: set-matrix | |
with: | |
inputFile: '.github/matrix_includes.json' | |
filter: '[?runOnBranch==`always`]' | |
test: | |
needs: [ matrix_prep ] | |
runs-on: ${{ matrix.runs_on }} | |
continue-on-error: true | |
strategy: | |
matrix: ${{ fromJson(needs.matrix_prep.outputs.matrix) }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Python | |
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0 | |
with: | |
python-version: '3.11' | |
cache: 'pip' | |
- name: Install pip dependencies | |
run: | | |
pip install --upgrade pip | |
pip install -r test/requirements.txt | |
- name: Setup vcpkg environment | |
uses: ARM-software/cmsis-actions/vcpkg@f608f32a6d83e90d79e1f2bbb7812fdb94bf1679 # v1 | |
with: | |
config: "./test/vcpkg-configuration.json" | |
vcpkg-downloads: "${{ github.workspace }}/.vcpkg/downloads" | |
cache: "-" | |
- name: Activate Arm tool license | |
run: | | |
armlm activate --server https://mdk-preview.keil.arm.com --product KEMDK-COM0 | |
working-directory: ./test | |
- name: Binary version info | |
shell: bash | |
run: | | |
csolution${{ matrix.binary_extension }} -V | |
cpackget${{ matrix.binary_extension }} -V | |
cbuild${{ matrix.binary_extension }} -V | |
cbuild2cmake${{ matrix.binary_extension }} -V | |
cbuildgen${{ matrix.binary_extension }} -V | |
- name: Run Test | |
shell: bash | |
continue-on-error: true | |
run: | | |
robot --outputdir reports-${{ matrix.target }}-${{ matrix.arch }} \ | |
--variable TEST_ENV_FILE:test-env-${{ matrix.target }}-${{ matrix.arch }}.md \ | |
--consolewidth=150 --settag ${{ matrix.target }}-${{ matrix.arch }} \ | |
--name ${{ matrix.target }}-${{ matrix.arch }} \ | |
./test | |
- name: Archieve test results | |
if: always() | |
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 | |
with: | |
name: reports-${{ matrix.target }}-${{ matrix.arch }} | |
path: reports-${{ matrix.target }}-${{ matrix.arch }} | |
report: | |
runs-on: ubuntu-latest | |
if: always() | |
needs: test | |
permissions: write-all | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Python | |
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0 | |
with: | |
python-version: '3.11' | |
cache: 'pip' | |
- name: Install pip dependencies | |
run: | | |
pip install --upgrade pip | |
pip install -r test/requirements.txt | |
- name: Download reports | |
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
with: | |
path: artifacts | |
pattern: reports-* | |
- name: Consolidate robot test results | |
working-directory: artifacts | |
continue-on-error: true | |
run: | | |
python -m robot.rebot --name Collective_Robot_Results --outputdir collective_robot_results --output output.xml \ | |
./reports-windows-amd64/output.xml \ | |
./reports-linux-amd64/output.xml \ | |
./reports-darwin-amd64/output.xml | |
- name: Generate Summary report | |
if: always() | |
run: | | |
python ./test/lib/execution_summary.py artifacts \ | |
-r ./test/reference.md \ | |
-o artifacts/collective_robot_results/output.xml \ | |
-m summary_report.md | |
- name: Print E2E Report | |
if: always() | |
run: cat summary_report.md >> $GITHUB_STEP_SUMMARY | |
- name: Archieve consolidated test results | |
if: always() | |
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 | |
with: | |
name: consolidated-reports | |
path: artifacts/collective_robot_results |