mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-11 13:59:13 +00:00

* Update homebrew dependencies like on the other workflows. Fixes problems caused by buggy swiftformat prebundled on the github actions macos runner * Removed UI tests from PR tests and running them on a schedule instead. Hopefuly fixed code coverage. * Added back simulator versions as they need to match UI test snapshots * Allow UI tests to run on this PR * Added back skipped UI tests * Fix danger sometimes not working on forks and disable integration tests on them
47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
name: Integration tests
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 2 * * 1-5'
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
integration_tests:
|
|
if: github.event.pull_request.head.repo.full_name == github.repository
|
|
|
|
name: Integration Tests
|
|
runs-on: macos-12
|
|
|
|
concurrency:
|
|
# Only allow a single run of this workflow on each branch, automatically cancelling older runs.
|
|
group: integration-tests-${{ github.head_ref }}
|
|
cancel-in-progress: true
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Brew bundle
|
|
run:
|
|
brew update && brew bundle && brew upgrade
|
|
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: vendor/bundle
|
|
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-gems-
|
|
|
|
- name: Bundle install
|
|
run: |
|
|
bundle config path vendor/bundle
|
|
bundle install --jobs 4 --retry 3
|
|
|
|
- name: Run tests
|
|
run: bundle exec fastlane integration_tests
|
|
env:
|
|
INTEGRATION_TESTS_HOST: ${{ secrets.INTEGRATION_TESTS_HOST }}
|
|
INTEGRATION_TESTS_USERNAME: ${{ secrets.INTEGRATION_TESTS_USERNAME }}
|
|
INTEGRATION_TESTS_PASSWORD: ${{ secrets.INTEGRATION_TESTS_PASSWORD }}
|
|
|