summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/ios.yml
blob: 06cc711545de00d008faa189bcc8a0a76d173c79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: iOS app
on:
    pull_request:
        paths:
            - ".github/workflows/ios.yml"
            - "ios/.swiftformat"
            - "ios/**/*.swift"
    # Build if requested manually from the Actions tab
    workflow_dispatch:
jobs:
    check-formatting:
        name: Check formatting
        runs-on: macos-11
        steps:
            - name: Install SwiftFormat
              run: |
                brew update
                brew upgrade swiftformat

            - name: Checkout repository
              uses: actions/checkout@v3

            - name: Check formatting
              run: |
                swiftformat --version
                swiftformat --lint .

    test:
        name: Unit tests
        runs-on: macos-11
        strategy:
            matrix:
                destination: ['platform=iOS Simulator,OS=13.7,name=iPhone 8']
        env:
            source_packages_dir: .spm
        steps:
            - name: Checkout repository
              uses: actions/checkout@v3

            - name: Configure cache
              uses: actions/cache@v3
              with:
                path: ios/${{ env.source_packages_dir }}
                key: ${{ runner.os }}-spm-${{ hashFiles('ios/**/Package.resolved') }}
                restore-keys: |
                  ${{ runner.os }}-spm-

            - name: Setup go-lang
              uses: actions/setup-go@v3
              with:
                  go-version: 1.18.5

            - name: Prepare iOS simulator
              run: |
                  sudo mkdir -p /Library/Developer/CoreSimulator/Profiles/Runtimes
                  sudo ln -s /Applications/Xcode_11.7.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 13.7.simruntime

            - name: Configure Xcode project
              run: |
                  cp Base.xcconfig.template Base.xcconfig
                  cp App.xcconfig.template App.xcconfig
                  cp PacketTunnel.xcconfig.template PacketTunnel.xcconfig
                  cp Screenshots.xcconfig.template Screenshots.xcconfig
              working-directory: ios/Configurations

            - name: Convert Package.resolved v2 -> v1
              run: |
                  jq '{
                    "object": {
                      "pins": .pins | map({
                        "package": .identity,
                        "repositoryURL": .location,
                        "state": .state
                      })
                    },
                    "version": 1
                  }' Package.resolved > Package.resolved.out
                  mv Package.resolved.out Package.resolved
              working-directory: ios/MullvadVPN.xcodeproj/project.xcworkspace/xcshareddata/swiftpm

            - name: Run MullvadVPNTests
              run: |
                  xcodebuild test \
                      -project MullvadVPN.xcodeproj \
                      -scheme MullvadVPNTests \
                      -destination "${destination}" \
                      -clonedSourcePackagesDirPath "${SOURCE_PACKAGES_PATH}" \
                      CODE_SIGN_IDENTITY="" \
                      CODE_SIGNING_REQUIRED=NO \
                      ONLY_ACTIVE_ARCH=YES
              working-directory: ios
              env:
                  destination: ${{ matrix.destination }}
                  SOURCE_PACKAGES_PATH: ${{ env.source_packages_dir }}

            - name: Run OperationsTests
              run: |
                  xcodebuild test \
                      -project MullvadVPN.xcodeproj \
                      -scheme OperationsTests \
                      -destination "${destination}" \
                      -clonedSourcePackagesDirPath "${SOURCE_PACKAGES_PATH}" \
                      CODE_SIGN_IDENTITY="" \
                      CODE_SIGNING_REQUIRED=NO \
                      ONLY_ACTIVE_ARCH=YES
              working-directory: ios
              env:
                  destination: ${{ matrix.destination }}
                  SOURCE_PACKAGES_PATH: ${{ env.source_packages_dir }}