Remove swift.treat_warnings_as_errors for swift_library targets that suppress warnings #37
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
tests: | |
name: Run tests | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: bazelisk test //Tests/... --xcode_version=14.3 | |
executable: | |
name: Build macos_command_line_application | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: bazelisk build //Sources/SignHereTool:sign-here -c opt --macos_cpus=x86_64,arm64 | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: sign-here | |
path: bazel-bin/Sources/SignHereTool/sign-here | |
if-no-files-found: error |