Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PIA-1265: tvOS unit tests ci setup #75

Merged
merged 1 commit into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
cancel-in-progress: true
jobs:
build:
runs-on: macos-13
runs-on: macos-14
env:
TEST_RUNNER_PIA_TEST_USER: ${{ secrets.PIA_ACCOUNT_USERNAME}}
TEST_RUNNER_PIA_TEST_PASSWORD: ${{ secrets.PIA_ACCOUNT_PASSWORD }}
Expand All @@ -28,10 +28,13 @@ jobs:
- name: Install Fastlane
run: gem install fastlane

- name: Run unit tests
- name: Run tvOS unit tests
run: bundle exec fastlane tvOStests

- name: Run iOS unit tests
run: bundle exec fastlane tests

- name: Run e2e tests
- name: Run iOS e2e tests
run: bundle exec fastlane e2e_tests
timeout-minutes: 45

Expand Down
4 changes: 4 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ platform :ios do
run_tests(scheme: "PIA VPN")
end

lane :tvOStests do
run_tests(scheme: "PIA VPN-tvOS")
end

lane :e2e_tests do
run_tests(
scheme: "PIA VPN dev",
Expand Down
Loading