Start Full Scan from a random index for Least Request LB. #16647
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: ios_tests | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
env: | |
if: ${{ github.repository == 'envoyproxy/envoy' }} | |
uses: ./.github/workflows/_env.yml | |
permissions: | |
contents: read | |
pull-requests: read | |
swifttests: | |
if: ${{ needs.env.outputs.mobile_ios_tests == 'true' }} | |
needs: env | |
permissions: | |
contents: read | |
packages: read | |
name: swift_tests | |
runs-on: macos-12 | |
timeout-minutes: 120 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'Install dependencies' | |
run: | | |
cd mobile | |
./ci/mac_ci_setup.sh | |
- name: 'Run swift library tests' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
cd mobile | |
./bazelw test \ | |
--experimental_ui_max_stdouterr_bytes=10485760 \ | |
--config=ios \ | |
--build_tests_only \ | |
--config=mobile-remote-ci-macos \ | |
//test/swift/... | |
objctests: | |
if: ${{ needs.env.outputs.mobile_ios_tests == 'true' }} | |
needs: env | |
permissions: | |
contents: read | |
packages: read | |
name: c_and_objc_tests | |
runs-on: macos-12 | |
timeout-minutes: 120 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'Install dependencies' | |
run: | | |
cd mobile | |
./ci/mac_ci_setup.sh | |
- name: 'Run Objective-C library tests' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
cd mobile | |
./bazelw test \ | |
--config=ios \ | |
--build_tests_only \ | |
--config=mobile-remote-ci-macos \ | |
//test/objective-c/... \ | |
//test/cc/unit:envoy_config_test |