Skip to content

Commit 2c605ca

Browse files
author
kamaal111
committed
Updating CI
1 parent 0feb1a6 commit 2c605ca

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- uses: actions/checkout@v1
1919
- name: Build and Test
2020
run: |
21+
pod install
2122
set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace "${workspace}" -scheme "${scheme}" -destination "${destination}" | xcpretty || exit 1
2223
env:
2324
destination: ${{ matrix.destination }}

PassLibrary.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
/* Begin PBXFileReference section */
3030
373E931736ACB00454521C63 /* Pods-PassLibrary-PassLibraryTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PassLibrary-PassLibraryTests.debug.xcconfig"; path = "Target Support Files/Pods-PassLibrary-PassLibraryTests/Pods-PassLibrary-PassLibraryTests.debug.xcconfig"; sourceTree = "<group>"; };
31+
3AF1D087B30967432C00DFC1 /* Pods-PassLibrary.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PassLibrary.debug.xcconfig"; path = "Target Support Files/Pods-PassLibrary/Pods-PassLibrary.debug.xcconfig"; sourceTree = "<group>"; };
3132
4912C7A0FA58A7B1C7BFEA31 /* Pods_PassLibrary.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PassLibrary.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3233
60437BE12572EA9F00F4F4AF /* PassLibrary.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PassLibrary.swift; sourceTree = "<group>"; };
3334
60437BE82572EB4700F4F4AF /* LinuxMain.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LinuxMain.swift; sourceTree = "<group>"; };
@@ -38,10 +39,9 @@
3839
6065D8F32572E9F90034FCF8 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3940
6065D8F82572E9F90034FCF8 /* PassLibraryTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PassLibraryTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
4041
6065D8FF2572E9F90034FCF8 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
42+
73ACAD142072DB941C49BE29 /* Pods-PassLibrary.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PassLibrary.release.xcconfig"; path = "Target Support Files/Pods-PassLibrary/Pods-PassLibrary.release.xcconfig"; sourceTree = "<group>"; };
4143
75C5D524CEE21D38B605D748 /* Pods-PassLibrary-PassLibraryTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PassLibrary-PassLibraryTests.release.xcconfig"; path = "Target Support Files/Pods-PassLibrary-PassLibraryTests/Pods-PassLibrary-PassLibraryTests.release.xcconfig"; sourceTree = "<group>"; };
4244
A608EBAC833D82868F5191AC /* Pods_PassLibrary_PassLibraryTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PassLibrary_PassLibraryTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
43-
B51754EA09510545A3C4C30C /* Pods-PassLibrary.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PassLibrary.release.xcconfig"; path = "Target Support Files/Pods-PassLibrary/Pods-PassLibrary.release.xcconfig"; sourceTree = "<group>"; };
44-
F4E6904860E2C0259E066AB2 /* Pods-PassLibrary.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PassLibrary.debug.xcconfig"; path = "Target Support Files/Pods-PassLibrary/Pods-PassLibrary.debug.xcconfig"; sourceTree = "<group>"; };
4545
/* End PBXFileReference section */
4646

4747
/* Begin PBXFrameworksBuildPhase section */
@@ -134,10 +134,10 @@
134134
D68CD550069DF601BAE6A0C6 /* Pods */ = {
135135
isa = PBXGroup;
136136
children = (
137-
F4E6904860E2C0259E066AB2 /* Pods-PassLibrary.debug.xcconfig */,
138-
B51754EA09510545A3C4C30C /* Pods-PassLibrary.release.xcconfig */,
139137
373E931736ACB00454521C63 /* Pods-PassLibrary-PassLibraryTests.debug.xcconfig */,
140138
75C5D524CEE21D38B605D748 /* Pods-PassLibrary-PassLibraryTests.release.xcconfig */,
139+
3AF1D087B30967432C00DFC1 /* Pods-PassLibrary.debug.xcconfig */,
140+
73ACAD142072DB941C49BE29 /* Pods-PassLibrary.release.xcconfig */,
141141
);
142142
path = Pods;
143143
sourceTree = "<group>";
@@ -465,7 +465,7 @@
465465
};
466466
6065D9042572E9F90034FCF8 /* Debug */ = {
467467
isa = XCBuildConfiguration;
468-
baseConfigurationReference = F4E6904860E2C0259E066AB2 /* Pods-PassLibrary.debug.xcconfig */;
468+
baseConfigurationReference = 3AF1D087B30967432C00DFC1 /* Pods-PassLibrary.debug.xcconfig */;
469469
buildSettings = {
470470
CODE_SIGN_STYLE = Automatic;
471471
DEFINES_MODULE = YES;
@@ -491,7 +491,7 @@
491491
};
492492
6065D9052572E9F90034FCF8 /* Release */ = {
493493
isa = XCBuildConfiguration;
494-
baseConfigurationReference = B51754EA09510545A3C4C30C /* Pods-PassLibrary.release.xcconfig */;
494+
baseConfigurationReference = 73ACAD142072DB941C49BE29 /* Pods-PassLibrary.release.xcconfig */;
495495
buildSettings = {
496496
CODE_SIGN_STYLE = Automatic;
497497
DEFINES_MODULE = YES;

0 commit comments

Comments
 (0)