Enable FreeBSD/OpenBSD CI #40
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: Pull request | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize, ready_for_review] | |
| jobs: | |
| tests: | |
| name: Test | |
| uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main | |
| with: | |
| linux_os_versions: '["amazonlinux2", "bookworm", "noble", "jammy", "rhel-ubi9"]' | |
| linux_build_command: "swift build" | |
| linux_exclude_swift_versions: '[{"swift_version": "5.8"}, {"swift_version": "5.9"}, {"swift_version": "5.10"}]' | |
| windows_build_command: "Invoke-Program swift build" | |
| windows_exclude_swift_versions: '[{"swift_version": "5.9"}]' | |
| macos_build_command: "xcrun swift build" | |
| macos_exclude_xcode_versions: '[{"xcode_version": "16.0"}, {"xcode_version": "16.1"}]' | |
| enable_macos_checks: true | |
| enable_ios_checks: true | |
| enable_freebsd_checks: true | |
| enable_linux_static_sdk_build: true | |
| enable_wasm_sdk_build: true | |
| enable_embedded_wasm_sdk_build: true | |
| enable_android_sdk_build: true | |
| source-integrity: | |
| name: Source integrity check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Run update.sh and check for modifications | |
| run: | | |
| bash update.sh | |
| if [ -n "$(git diff --name-only)" ]; then | |
| echo "::error::Source files do not match the upstream SQLite release. The following files differ:" | |
| git diff | |
| exit 1 | |
| fi | |
| soundness: | |
| name: Soundness | |
| uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main | |
| with: | |
| license_header_check_project_name: "Swift.org" | |
| license_header_check_enabled: false | |
| unacceptable_language_check_enabled: false |