on:
schedule:
- - cron: '0 5 * * *'
+ - cron: '50 02 * * *'
+ workflow_dispatch:
permissions:
contents: read
matrix:
tag: [edge, latest]
cc: [gcc, clang]
- branch: [openssl-3.0, openssl-3.1, master]
runs-on: ubuntu-latest
container:
image: docker.io/library/alpine:${{ matrix.tag }}
- name: install packages
run: apk --no-cache add build-base perl linux-headers ${{ matrix.cc }}
- uses: actions/checkout@v4
- with:
- ref: ${{ matrix.branch }}
- name: config
run: |
./config --banner=Configured no-shared -Wall -Werror enable-fips --strict-warnings \
strategy:
fail-fast: false
matrix:
- branch: [openssl-3.0, openssl-3.1, master]
zoo:
- image: docker.io/library/debian:10
install: apt-get update && apt-get install -y gcc make perl
container: ${{ matrix.zoo.image }}
steps:
- uses: actions/checkout@v4
- with:
- ref: ${{ matrix.branch }}
- name: install packages
run: ${{ matrix.zoo.install }}
- name: config
strategy:
fail-fast: false
matrix:
- branch: [openssl-3.0, openssl-3.1, master]
os: [macos-12, macos-13, macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- with:
- ref: ${{ matrix.branch }}
- name: checkout fuzz/corpora submodule
run: git submodule update --init --depth 1 fuzz/corpora
- name: config
strategy:
fail-fast: false
matrix:
- branch: [openssl-3.0, openssl-3.1, master]
os: [windows-2019, windows-2022]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- with:
- ref: ${{ matrix.branch }}
- name: checkout fuzz/corpora submodule
run: git submodule update --init --depth 1 fuzz/corpora
- uses: ilammy/msvc-dev-cmd@v1
name: Provider compatibility across versions
-# NOTE: if this is being run on pull_request, it will **not** use the pull
-# request's branch. It is hardcoded to use the master branch.
-#
-on: #[pull_request]
+# Please note there is no point in running this job on PR as the tests
+# will always run against the tips of the branches in the main repository
+# and not the branch from the PR.
+# Use the `extended tests` label to run provider compatibility checks
+# on PRs.
+on:
schedule:
- - cron: '0 15 * * *'
+ - cron: '10 02 * * *'
+ workflow_dispatch:
permissions:
contents: read