-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
66 changed files
with
3,435 additions
and
494 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 |
---|---|---|
@@ -1,28 +1,26 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ "main", "develop" ] | ||
pull_request: | ||
# This action is disabled until we can run it on Apple Silicon powered macOS runners - https://github.com/github/roadmap/issues/528 | ||
|
||
jobs: | ||
test: | ||
name: Unit and UI Tests | ||
runs-on: macOS-latest | ||
steps: | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.16 | ||
- uses: actions/checkout@v2 | ||
- name: Set up config files | ||
run: | | ||
cp IVPNClient/Config/staging.template.xcconfig IVPNClient/Config/staging.xcconfig | ||
cp IVPNClient/Config/release.template.xcconfig IVPNClient/Config/release.xcconfig | ||
cp wireguard-tunnel-provider/Config/wg-staging.template.xcconfig wireguard-tunnel-provider/Config/wg-staging.xcconfig | ||
cp wireguard-tunnel-provider/Config/wg-release.template.xcconfig wireguard-tunnel-provider/Config/wg-release.xcconfig | ||
cp IVPNWidget/Config/widget-staging.template.xcconfig IVPNWidget/Config/widget-staging.xcconfig | ||
cp IVPNWidget/Config/widget-release.template.xcconfig IVPNWidget/Config/widget-release.xcconfig | ||
cp IVPNClient/Config/OpenVPNConf.template.swift IVPNClient/Config/OpenVPNConf.swift | ||
cp fastlane/Appfile.template fastlane/Appfile | ||
- name: Build and test | ||
run: xcodebuild test -scheme IVPNClient -destination 'platform=iOS Simulator,name=iPhone 14' | ||
# on: | ||
# push: | ||
# branches: [ "main", "develop" ] | ||
# pull_request: | ||
|
||
# jobs: | ||
# test: | ||
# name: Unit and UI Tests | ||
# runs-on: macOS-latest | ||
# steps: | ||
# - uses: actions/setup-go@v2 | ||
# with: | ||
# go-version: 1.18 | ||
# - uses: actions/checkout@v2 | ||
# - name: Set up config files | ||
# run: | | ||
# cp IVPNClient/Config/staging.template.xcconfig IVPNClient/Config/staging.xcconfig | ||
# cp IVPNClient/Config/release.template.xcconfig IVPNClient/Config/release.xcconfig | ||
# cp IVPNClient/Config/OpenVPNConf.template.swift IVPNClient/Config/OpenVPNConf.swift | ||
# cp fastlane/Appfile.template fastlane/Appfile | ||
# - name: Build and test | ||
# run: xcodebuild test -scheme IVPNClient -destination 'platform=iOS Simulator,name=iPhone 14' |
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
20 changes: 19 additions & 1 deletion
20
IVPNClient.xcodeproj/xcshareddata/xcschemes/IVPNClient.xcscheme
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
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 |
---|---|---|
|
@@ -25,4 +25,5 @@ import Foundation | |
|
||
struct InterfaceResult: Decodable { | ||
var ipAddress: String | ||
let kemCipher1: String? | ||
} |
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
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,2 +1,3 @@ | ||
#include "../WireGuardKitC/WireGuardKitC.h" | ||
#include "Utilities/Logging/ringlogger.h" | ||
#include "liboqs/include/oqs/oqs.h" |
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
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
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
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
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
Oops, something went wrong.