ios-device-test #700
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-device-test | |
on: | |
workflow_run: | |
workflows: [ios-ci] | |
types: | |
- completed | |
jobs: | |
ios-device-test: | |
strategy: | |
matrix: | |
test: [ | |
{artifactName: ios-render-test, xcTestFile: RenderTest.xctest.zip, ipaFile: RenderTestApp.ipa, name: "iOS Render Tests"}, | |
{artifactName: ios-cpp-unit-tests, xcTestFile: CppUnitTests.xctest.zip, ipaFile: CppUnitTestsApp.ipa, name: "iOS C++ Unit Tests"}, | |
] | |
fail-fast: true | |
runs-on: ubuntu-22.04 | |
if: github.repository_owner == 'maplibre' && github.event.workflow_run.conclusion == 'success' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate token | |
id: generate_token | |
uses: tibdex/github-app-token@v2 | |
with: | |
app_id: ${{ secrets.MAPLIBRE_NATIVE_BOT_APP_ID }} | |
private_key: ${{ secrets.MAPLIBRE_NATIVE_BOT_PRIVATE_KEY }} | |
- uses: LouisBrunner/[email protected] | |
id: create_check | |
with: | |
token: ${{ steps.generate_token.outputs.token }} | |
details_url: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
status: in_progress | |
name: ${{ matrix.test.name }} | |
sha: ${{ github.event.workflow_run.head_sha }} | |
- uses: ./.github/actions/download-workflow-run-artifact | |
with: | |
artifact-name: ${{ matrix.test.artifactName }} | |
- name: Check if test files exist (otherwise the parent workflow was skipped) | |
id: check_files | |
uses: andstor/[email protected] | |
with: | |
files: "${{ matrix.test.xcTestFile }}, ${{ matrix.test.ipaFile }}" | |
- name: Configure AWS Credentials | |
if: steps.check_files.outputs.files_exists == 'true' | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: us-west-2 | |
role-to-assume: ${{ vars.AWS_ROLE_TO_ASSUME }} | |
role-duration-seconds: 3600 | |
role-session-name: MySessionName | |
- name: Create upload app | |
if: steps.check_files.outputs.files_exists == 'true' | |
run: | | |
response=$(aws devicefarm create-upload --type IOS_APP --name ${{ matrix.test.ipaFile }} --project-arn ${{ vars.AWS_DEVICE_FARM_PROJECT_ARN }}) | |
echo "$response" | |
arn="$(jq -r '.upload.arn' <<< "$response")" | |
url="$(jq -r '.upload.url' <<< "$response")" | |
echo "app_arn=$arn" >> "$GITHUB_ENV" | |
echo "app_url=$url" >> "$GITHUB_ENV" | |
- name: Create upload test package | |
if: steps.check_files.outputs.files_exists == 'true' | |
run: | | |
response=$(aws devicefarm create-upload --type XCTEST_TEST_PACKAGE --name ${{ matrix.test.xcTestFile }} --project-arn ${{ vars.AWS_DEVICE_FARM_PROJECT_ARN }}) | |
echo "$response" | |
arn="$(jq -r '.upload.arn' <<< "$response")" | |
url="$(jq -r '.upload.url' <<< "$response")" | |
echo "test_package_arn=$arn" >> "$GITHUB_ENV" | |
echo "test_package_url=$url" >> "$GITHUB_ENV" | |
- name: Upload ${{ matrix.test.name }} | |
if: steps.check_files.outputs.files_exists == 'true' | |
run: | | |
curl -T ${{ matrix.test.ipaFile }} "${{ env.app_url }}" | |
curl -T ${{ matrix.test.xcTestFile }} "${{ env.test_package_url }}" | |
max_checks=10 | |
sleep_time=5 | |
check_status() { | |
aws devicefarm get-upload --arn "$1" | jq -r '.upload.status' | |
} | |
while ((max_checks--)); do | |
status_app="$(check_status "${{ env.app_arn }}")" | |
status_test_package="$(check_status "${{ env.test_package_arn }}")" | |
echo status_app="$status_app" | |
echo status_test_package="$status_test_package" | |
if [[ "$status_app" == "SUCCEEDED" && "$status_test_package" == "SUCCEEDED" ]]; then | |
exit 0 | |
fi | |
sleep $sleep_time | |
done | |
- name: Schedule test run | |
if: steps.check_files.outputs.files_exists == 'true' | |
uses: realm/aws-devicefarm/test-application@master | |
with: | |
name: MapLibre Native ${{ matrix.test.name }} | |
project_arn: ${{ vars.AWS_DEVICE_FARM_PROJECT_ARN }} | |
device_pool_arn: ${{ vars.AWS_DEVICE_FARM_IPHONE_DEVICE_POOL_ARN }} | |
app_arn: ${{ env.app_arn }} | |
app_type: IOS_APP | |
test_type: XCTEST | |
test_package_arn: ${{ env.test_package_arn }} | |
timeout: 28800 | |
- uses: LouisBrunner/[email protected] | |
if: always() | |
with: | |
token: ${{ steps.generate_token.outputs.token }} | |
check_id: ${{ steps.create_check.outputs.check_id }} | |
conclusion: ${{ job.status }} | |
sha: ${{ github.event.workflow_run.sha }} |