-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PIA-675: Moved UI resources to main target
- Loading branch information
1 parent
1d95c91
commit 428efa0
Showing
364 changed files
with
1,981 additions
and
17,183 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: pia_ios_client_library | ||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
concurrency: | ||
group: "${{ github.ref }}" | ||
cancel-in-progress: true | ||
jobs: | ||
macos: | ||
name: build and test | ||
runs-on: macos-13 | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Setup Git credentials | ||
run: | | ||
git config --global url."https://${{ secrets.ORG_GITHUB_USERNAME }}:${{ secrets.ORG_GITHUB_TOKEN }}@github.com/".insteadOf "[email protected]:" | ||
- uses: actions/checkout@v3 | ||
- name: Select XCode version | ||
run: sudo xcode-select -s /Applications/Xcode_15.0.app | ||
|
||
- name: Install dependencies | ||
run: | | ||
swift package resolve | ||
- name: Build | ||
run: | | ||
set -o pipefail | ||
xcodebuild -scheme 'PIALibrary' -configuration Debug -destination "platform=iOS Simulator,OS=latest,name=iPhone 15" build | xcpretty | ||
exit ${PIPESTATUS[0]} | ||
- name: Test | ||
run: | | ||
set -o pipefail | ||
xcodebuild -scheme 'PIALibrary' -destination "platform=iOS Simulator,OS=latest,name=iPhone 15" \ | ||
-skip-testing:PIALibraryTests/EndpointManagerTests \ | ||
-skip-testing:PIALibraryTests/AccountTests \ | ||
-skip-testing:PIALibraryTests/AccountInfoTests \ | ||
-skip-testing:PIALibraryTests/ProductTests \ | ||
-skip-testing:PIALibraryTests/DIPTokenKeychainTests \ | ||
-skip-testing:PIALibraryTests/VPNTests \ | ||
test | xcpretty | ||
exit ${PIPESTATUS[0]} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
.DS_Store | ||
*.DS_Store | ||
*.swp | ||
*.pbxuser | ||
*.swiftpm | ||
*.build | ||
**/*.xcworkspace/xcuserdata | ||
**/*.xcodeproj/project.xcworkspace | ||
**/*.xcodeproj/xcuserdata | ||
docs | ||
Pods | ||
.swiftpm | ||
Package.resolved |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.