mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-09 10:30:50 +02:00
84d27741d5
The draft guard skips the job on draft PRs, but the pull_request trigger used the default types (no ready_for_review), so marking a draft ready did not re-run the job and it stayed skipped. Add the standard types, matching the other workflows, so it re-runs when the PR becomes ready.
103 lines
4.0 KiB
YAML
103 lines
4.0 KiB
YAML
name: PIC32MZ simulator test
|
|
|
|
# START OF COMMON SECTION
|
|
on:
|
|
push:
|
|
branches: [ 'master', 'main', 'release/**' ]
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
branches: [ '*' ]
|
|
# Weekend cron and manual workflow_dispatch refresh the shared ghcr build
|
|
# cache that PR runs read (cache-to below is gated to those two events).
|
|
schedule:
|
|
- cron: '0 7 * * 6'
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
# END OF COMMON SECTION
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
# Build the PIC32MZ software simulator (https://github.com/wolfSSL/simulators,
|
|
# PIC32MZSim/ subdirectory) and run the wolfCrypt test suite on emulated
|
|
# PIC32MZ EC (no FPU, CE ignores OUT_SWAP) and EF (FPU + OUT_SWAP) parts,
|
|
# through both the direct-register PIC32 port and the MPLAB Harmony 3 driver
|
|
# port.
|
|
#
|
|
# Like stm32-sim.yml, the Dockerfiles read wolfSSL from /opt/wolfssl at
|
|
# runtime via a bind mount, so no Dockerfile patching is required - the PR
|
|
# checkout is mounted directly.
|
|
|
|
jobs:
|
|
pic32mz_sim:
|
|
name: wolfCrypt on PIC32MZ ${{ matrix.chip_label }} (${{ matrix.port_label }})
|
|
if: ${{ (github.repository_owner == 'wolfssl') && (github.event_name != 'pull_request' || github.event.pull_request.draft == false) }}
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 30
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- port_label: direct
|
|
chip_label: EC
|
|
dockerfile: Dockerfile.wolfcrypt-direct
|
|
image_tag: pic32mz-wolfcrypt-direct:ci
|
|
script: run-wolfcrypt-direct-ec.sh
|
|
cache_scope: pic32mz-direct
|
|
- port_label: direct
|
|
chip_label: EF
|
|
dockerfile: Dockerfile.wolfcrypt-direct
|
|
image_tag: pic32mz-wolfcrypt-direct:ci
|
|
script: run-wolfcrypt-direct-ef.sh
|
|
cache_scope: pic32mz-direct
|
|
- port_label: harmony
|
|
chip_label: EC
|
|
dockerfile: Dockerfile.wolfcrypt-harmony
|
|
image_tag: pic32mz-wolfcrypt-harmony:ci
|
|
script: run-wolfcrypt-harmony-ec.sh
|
|
cache_scope: pic32mz-harmony
|
|
- port_label: harmony
|
|
chip_label: EF
|
|
dockerfile: Dockerfile.wolfcrypt-harmony
|
|
image_tag: pic32mz-wolfcrypt-harmony:ci
|
|
script: run-wolfcrypt-harmony-ef.sh
|
|
cache_scope: pic32mz-harmony
|
|
steps:
|
|
- name: Checkout wolfSSL (PR source)
|
|
uses: actions/checkout@v5
|
|
with:
|
|
path: wolfssl
|
|
|
|
- name: Clone PIC32MZ simulator
|
|
run: git clone --depth 1 https://github.com/wolfSSL/simulators simulators
|
|
|
|
- uses: docker/setup-buildx-action@v4
|
|
|
|
- name: Log in to ghcr (cache refresh on cron/manual dispatch)
|
|
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
|
|
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u "${{ github.actor }}" --password-stdin
|
|
|
|
- name: Build ${{ matrix.image_tag }} image
|
|
uses: docker/build-push-action@v7
|
|
with:
|
|
context: simulators/PIC32MZSim
|
|
file: simulators/PIC32MZSim/${{ matrix.dockerfile }}
|
|
push: false
|
|
load: true
|
|
tags: ${{ matrix.image_tag }}
|
|
cache-from: type=registry,ref=ghcr.io/wolfssl/wolfssl-sim-cache:${{ matrix.cache_scope }}
|
|
# Write only on the weekend cron, and only from the EC entry of each
|
|
# image, so the two chips that share a scope do not race on the push.
|
|
cache-to: ${{ ((github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && matrix.chip_label == 'EC') && format('type=registry,ref=ghcr.io/wolfssl/wolfssl-sim-cache:{0},mode=max', matrix.cache_scope) || '' }}
|
|
|
|
- name: Run wolfCrypt tests on PIC32MZ ${{ matrix.chip_label }} (${{ matrix.port_label }})
|
|
run: |
|
|
docker run --rm \
|
|
-v "${{ github.workspace }}/wolfssl:/opt/wolfssl:ro" \
|
|
${{ matrix.image_tag }} \
|
|
/app/scripts/${{ matrix.script }}
|