removes a validation to consider universal bundle ids #50
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 | |
tests-bzlmod: | |
name: Run tests w/bzlmod | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: bazelisk test //Tests/... --xcode_version=14.3 --enable_bzlmod | |
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 | |
executable-bzlmod: | |
name: Build macos_command_line_application w/bzlmod | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: bazelisk build //Sources/SignHereTool:sign-here -c opt --macos_cpus=x86_64,arm64 --enable_bzlmod | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: sign-here | |
path: bazel-bin/Sources/SignHereTool/sign-here | |
if-no-files-found: error |