Skip to content

Commit

Permalink
PIA-675: Moved UI resources to main target
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Docal authored and kp-said-rehouni committed Nov 21, 2023
1 parent 1d95c91 commit 428efa0
Show file tree
Hide file tree
Showing 364 changed files with 1,981 additions and 17,183 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/pia_ios_client_library.yml
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]}
6 changes: 5 additions & 1 deletion .gitignore
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
95 changes: 0 additions & 95 deletions PIALibrary.podspec

This file was deleted.

Loading

0 comments on commit 428efa0

Please sign in to comment.