WIP #114
Workflow file for this run
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: PR | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
soundness: | |
name: Soundness | |
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main | |
with: | |
license_header_check_project_name: "SwiftCrypto" | |
docs_check_enabled: false | |
construct-cmake-matrix: | |
name: Construct cmake matrix | |
runs-on: ubuntu-latest | |
outputs: | |
cmake-matrix: '${{ steps.generate-matrix.outputs.cmake-matrix }}' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- id: generate-matrix | |
run: echo "cmake-matrix=$(./scripts/generate_matrix.sh)" >> "$GITHUB_OUTPUT" | |
env: | |
MATRIX_LINUX_COMMAND: "./scripts/check-cmake-lists.sh" | |
cmake-lists: | |
name: Check cmake lists | |
needs: construct-cmake-matrix | |
# TODO: use global reference | |
uses: ./.github/workflows/swift_test_matrix.yml | |
with: | |
name: "Check cmake lists" | |
matrix_string: '${{ needs.construct-cmake-matrix.outputs.cmake-matrix }}' | |
unit-tests: | |
name: Unit tests | |
uses: ./.github/workflows/unit_tests.yml | |
with: | |
linux_5_9_arguments_override: "--explicit-target-dependency-import-check error" | |
linux_5_10_arguments_override: "--explicit-target-dependency-import-check error" | |
linux_6_0_arguments_override: "--explicit-target-dependency-import-check error" | |
linux_nightly_6_0_arguments_override: "--explicit-target-dependency-import-check error" | |
linux_nightly_main_arguments_override: "--explicit-target-dependency-import-check error" | |
windows_6_0_enabled: true | |
windows_nightly_6_0_enabled: true | |
windows_nightly_main_enabled: true | |
windows_6_0_arguments_override: "--explicit-target-dependency-import-check error" | |
windows_nightly_6_0_arguments_override: "--explicit-target-dependency-import-check error" | |
windows_nightly_main_arguments_override: "--explicit-target-dependency-import-check error" | |
cxx-interop: | |
name: Cxx interop | |
uses: ./.github/workflows/cxx_interop.yml |