Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@ runs:
run: xcodebuild -version | tee .xcode-version
shell: bash

- id: restore-spm-cache
name: Restore SPM cache
uses: actions/cache@v4
with:
path: ~/Library/Developer/Xcode/DerivedData/**/SourcePackages
key: spm-${{ inputs.platform }}-${{ hashFiles('*.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved') }}-${{ hashFiles('.xcode-version') }}-v1

- name: Resolve SPM dependencies
if: steps.restore-spm-cache.outputs.cache-hit != 'true'
run: xcodebuild -resolvePackageDependencies -skipPackageUpdates -onlyUsePackageVersionsFromResolvedFile
shell: bash

- id: restore-carthage-cache
name: Restore Carthage cache
uses: actions/cache@v4
Expand Down
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ DerivedData/
*.perspectivev3
!default.perspectivev3
xcuserdata/
Auth0.xcodeproj/project.xcworkspace/xcshareddata/
**/xcshareddata/*

## Other
*.moved-aside
Expand All @@ -64,7 +64,10 @@ playground.xcworkspace
# Packages/
.swiftpm/
.build/
Package.resolved
/Package.resolved
!**/xcshareddata/**/
**/xcshareddata/swiftpm/**/
!**/xcshareddata/swiftpm/Package.resolved

# CocoaPods
#
Expand Down
10 changes: 8 additions & 2 deletions Auth0.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@
5CD9FC8F26FE311D009C2B27 /* SimpleKeychain.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5CD9FC8526FE30EB009C2B27 /* SimpleKeychain.xcframework */; };
5CD9FC9026FE3122009C2B27 /* JWTDecode.xcframework in Copy Files */ = {isa = PBXBuildFile; fileRef = 5CD9FC8426FE30EB009C2B27 /* JWTDecode.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
5CD9FC9126FE3122009C2B27 /* SimpleKeychain.xcframework in Copy Files */ = {isa = PBXBuildFile; fileRef = 5CD9FC8526FE30EB009C2B27 /* SimpleKeychain.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
5CDF671F2DC55C6600A9B513 /* CwlPosixPreconditionTesting in Frameworks */ = {isa = PBXBuildFile; productRef = 5CDF671E2DC55C6600A9B513 /* CwlPosixPreconditionTesting */; };
5CE775A2244FCF2000D054A0 /* Generators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C4F552C23C9123000C89615 /* Generators.swift */; };
5CE775A3244FCF3600D054A0 /* CryptoExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C4F552D23C9123000C89615 /* CryptoExtensions.swift */; };
5CE775A4244FCF3A00D054A0 /* BioAuthenticationSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B9262C11ECF0CBA00F4F6D3 /* BioAuthenticationSpec.swift */; };
Expand Down Expand Up @@ -373,7 +374,6 @@
C177D7762C2BE00D0094C657 /* StubURLProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = C177D7742C2BE00D0094C657 /* StubURLProtocol.swift */; };
C177D7772C2BE00D0094C657 /* StubURLProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = C177D7742C2BE00D0094C657 /* StubURLProtocol.swift */; };
C19413DC2C2D792200FE88F7 /* CwlPreconditionTesting in Frameworks */ = {isa = PBXBuildFile; productRef = C19413DB2C2D792200FE88F7 /* CwlPreconditionTesting */; };
C196EB072C35D0C700D108AA /* CwlPreconditionTesting in Frameworks */ = {isa = PBXBuildFile; productRef = C196EB062C35D0C700D108AA /* CwlPreconditionTesting */; };
C1B3B9AF2C24B297004A32A4 /* OAuth2VisionApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1B3B9AE2C24B297004A32A4 /* OAuth2VisionApp.swift */; };
C1B3B9B12C24B297004A32A4 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1B3B9B02C24B297004A32A4 /* ContentView.swift */; };
C1B3B9D32C24B39E004A32A4 /* Auth0.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C1B3B9C02C24B39E004A32A4 /* Auth0.framework */; };
Expand Down Expand Up @@ -887,7 +887,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C196EB072C35D0C700D108AA /* CwlPreconditionTesting in Frameworks */,
5CDF671F2DC55C6600A9B513 /* CwlPosixPreconditionTesting in Frameworks */,
5CD9FC7B26FE30CF009C2B27 /* Nimble.xcframework in Frameworks */,
5CD9FC7D26FE30CF009C2B27 /* Quick.xcframework in Frameworks */,
);
Expand Down Expand Up @@ -1611,6 +1611,7 @@
name = Auth0Tests.tvOS;
packageProductDependencies = (
C196EB062C35D0C700D108AA /* CwlPreconditionTesting */,
5CDF671E2DC55C6600A9B513 /* CwlPosixPreconditionTesting */,
);
productName = Auth0Tests.tvOS;
productReference = 5F331AF91D4BB24C00AE4382 /* Auth0Tests.xctest */;
Expand Down Expand Up @@ -3745,6 +3746,11 @@
/* End XCRemoteSwiftPackageReference section */

/* Begin XCSwiftPackageProductDependency section */
5CDF671E2DC55C6600A9B513 /* CwlPosixPreconditionTesting */ = {
isa = XCSwiftPackageProductDependency;
package = C177D6C52C2ADEB60094C657 /* XCRemoteSwiftPackageReference "CwlPreconditionTesting" */;
productName = CwlPosixPreconditionTesting;
};
C177D6C62C2ADEB60094C657 /* CwlPreconditionTesting */ = {
isa = XCSwiftPackageProductDependency;
package = C177D6C52C2ADEB60094C657 /* XCRemoteSwiftPackageReference "CwlPreconditionTesting" */;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading