SPM support #61
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: Pull Request Check | |
on: pull_request | |
defaults: | |
run: | |
shell: zsh -l {0} # Use zsh iwth login as default shell | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
Android: | |
name: "mailcore2 - Android" | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select XCode 14.2 | |
run: sudo xcode-select --switch /Applications/Xcode_14.2.app | |
- name: Install NDK | |
run: $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager --install "ndk;25.2.9519653" | |
- name: Install Swift Android Toolchain | |
run: wget https://github.com/readdle/swift-android-toolchain/releases/latest/download/swift-android.zip; | |
unzip swift-android.zip; | |
swift-android/bin/swift-android tools --update; | |
- name: Install Android Emulator | |
run: $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager --install "system-images;android-29;google_apis;x86_64" | |
- name: Run connected android tests | |
run: export ANDROID_NDK_ROOT_25C=$ANDROID_HOME/ndk/25.2.9519653; | |
export SWIFT_ANDROID_HOME_5_7=$(pwd)/swift-android; | |
./build-scripts/test-android.sh | |
- name: Publish Report | |
uses: mikepenz/action-junit-report@v3 | |
if: failure() | |
with: | |
report_paths: .build/reports/junit.xml | |
check_name: mailcore2 - Android - Report | |
detailed_summary: true | |
include_passed: true | |
Darwin: | |
name: "mailcore2 - ${{ matrix.os }}" | |
runs-on: macos-latest | |
timeout-minutes: 60 | |
strategy: | |
matrix: | |
os: [macOS, iOS] | |
include: | |
- os: macOS | |
os_lowercased: macos | |
- os: iOS | |
os_lowercased: ios | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: ./build-scripts/test-${{ matrix.os_lowercased }}.sh | |
- name: Publish Report | |
uses: mikepenz/action-junit-report@v3 | |
if: failure() | |
with: | |
report_paths: .build/reports/junit.xml | |
check_name: mailcore2 - ${{ matrix.os }} - Report | |
detailed_summary: true | |
include_passed: true |