Prep wolfProvider 1.2.1 release #260
Workflow file for this run
This file contains hidden or 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: Smoke Test | |
| on: | |
| push: | |
| branches: [ 'master', 'main', 'release/**' ] | |
| pull_request: | |
| branches: [ '*' ] | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| paths-ignore: | |
| - '**.md' | |
| - 'docs/**' | |
| - 'LICENSE*' | |
| - '.github/ISSUE_TEMPLATE/**' | |
| - '.github/dependabot.yml' | |
| - '.gitignore' | |
| - 'AUTHORS' | |
| - 'COPYING' | |
| - 'README*' | |
| - 'CHANGELOG*' | |
| concurrency: | |
| group: smoke-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| # _discover-versions.yml (the reusable workflow we call below) declares | |
| # permissions: { contents: read, packages: read } for its `oras login | |
| # ghcr.io` step. Workflow-level permissions clamp every job including | |
| # reusable workflows, so we must grant packages:read here or the | |
| # discover_versions job startup_failures before any container spawns. | |
| permissions: | |
| contents: read | |
| packages: read | |
| jobs: | |
| discover_versions: | |
| uses: ./.github/workflows/_discover-versions.yml | |
| smoke: | |
| needs: discover_versions | |
| name: Smoke build (${{ matrix.name }}) | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: read | |
| packages: write | |
| timeout-minutes: 20 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - name: master/openssl-latest | |
| wolfssl_ref: master | |
| - name: stable/openssl-latest | |
| wolfssl_ref: '' # filled in from needs.discover_versions | |
| - name: 5.8.4/openssl-latest | |
| wolfssl_ref: v5.8.4-stable | |
| steps: | |
| - name: Checkout wolfProvider | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Cache build dependencies | |
| id: deps | |
| uses: ./.github/actions/oras-build-deps | |
| with: | |
| variant: smoke | |
| openssl_ref: ${{ needs.discover_versions.outputs.openssl_latest_ref }} | |
| wolfssl_ref: ${{ matrix.wolfssl_ref || needs.discover_versions.outputs.wolfssl_latest_ref }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build and test wolfProvider | |
| run: | | |
| # Resolve "stable" matrix row to the discovered latest tag. | |
| WOLFSSL_TAG="${{ matrix.wolfssl_ref || needs.discover_versions.outputs.wolfssl_latest_ref }}" | |
| OPENSSL_TAG=${{ needs.discover_versions.outputs.openssl_latest_ref }} \ | |
| WOLFSSL_TAG="$WOLFSSL_TAG" \ | |
| ./scripts/build-wolfprovider.sh | |
| - name: Push build dependencies | |
| uses: ./.github/actions/oras-build-deps-push | |
| with: | |
| registry: ${{ steps.deps.outputs.registry }} | |
| openssl_install_tag: ${{ steps.deps.outputs.openssl_install_tag }} | |
| wolfssl_install_tag: ${{ steps.deps.outputs.wolfssl_install_tag }} | |
| openssl_hit: ${{ steps.deps.outputs.openssl_hit }} | |
| wolfssl_hit: ${{ steps.deps.outputs.wolfssl_hit }} | |
| - name: Print errors | |
| if: ${{ failure() }} | |
| run: | | |
| if [ -f test-suite.log ] ; then | |
| cat test-suite.log | |
| fi |