Skip to content

Updated to Swift 6 in Native ads samples #880

Updated to Swift 6 in Native ads samples

Updated to Swift 6 in Native ads samples #880

Workflow file for this run

name: Build Status
# Step 1: Build on pull-requests or pushes to main
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
# Step 2: Build the samples
build:
name: Build
runs-on: macOS-latest
strategy:
fail-fast: false
matrix:
xcode: [15.3, 16.0]
regex:
- "Objective-C/advanced"
- "Swift/advanced"
- "Objective-C/admob"
- "Swift/admob"
- "Objective-C/admanager"
- "Swift/admanager"
continue-on-error: true
outputs:
regex_failed: ${{ steps.regex_check.outputs.failed }}
steps:
- name: Clone Repo
uses: actions/checkout@v1
- name: Select the Google Mobile Ads SDK minimum Xcode version (15.3)
# Available Xcode versions:
# https://github.com/actions/runner-images/blob/main/images/macos/toolsets/toolset-14.json
run: |
sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
echo "Selected Xcode version:"
/usr/bin/xcodebuild -version
- name: Pod repo update
run: pod repo update
- name: Install xcpretty
run: sudo gem install xcpretty
- name: Set commit range (push to the main branch, e.g. merge)
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: echo "COMMIT_RANGE="${{ github.event.before }}.."" >> $GITHUB_ENV
- name: Set commit range (pull request)
if: github.event_name == 'pull_request'
run: echo "COMMIT_RANGE="HEAD~.."" >> $GITHUB_ENV
- name: Build
run: .github/workflows/build/build.sh
shell: bash
env:
COMMIT_RANGE: ${{ env.COMMIT_RANGE }}
REGEX: ${{ matrix.regex }}
- name: Check for Regex Failures
id: regex_check
run: |
if grep -q "Regex failed for ${{ matrix.regex }}" .github/workflows/build/build.log; then
echo "::set-output name=failed::true"
else
echo "::set-output name=failed::false"
fi
check_all_regexes:

Check failure on line 73 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build Status

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 73, Col: 5): Unexpected value 'check_all_regexes'
name: Check All Regexes
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
regex: ${{ fromJson(needs.build.strategy.matrix.regex) }}
steps:
- name: Check if Regex Failed for All Xcode Versions
id: final_check
run: |
failed_count=0
for job in ${{ needs.build.outputs.* }}; do
if [[ "${{ fromJson(job).regex_failed }}" == "true" && "${{ fromJson(job).matrix.regex }}" == "${{ matrix.regex }}" ]]; then
((failed_count++))
fi
done
num_xcode_versions=${{ needs.build.strategy.matrix.xcode | length }}
if [[ "$failed_count" -eq "$num_xcode_versions" ]]; then
echo "Regex '${{ matrix.regex }}' failed for all Xcode versions."
exit 1
fi