Skip to content

Commit ed11b86

Browse files
committed
#54 check linker
1 parent dab1b0a commit ed11b86

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/compilation-check.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,19 @@ jobs:
1616
uses: actions/setup-java@v1
1717
with:
1818
java-version: 11
19-
- name: Set Xcode version to 14.3.1
19+
- name: Set Xcode version to 15.0.1
2020
uses: maxim-lobanov/setup-xcode@v1
2121
with:
22-
xcode-version: '14.3.1'
22+
xcode-version: '15.0.1'
2323
- name: Print Xcode version
2424
run: xcodebuild -version
25+
- name: Show used Ld version
26+
run: xcrun -sdk iphonesimulator -find ld
2527
- name: Check build
2628
run: ./gradlew build publishToMavenLocal syncMultiPlatformLibraryDebugFrameworkIosX64
2729
- name: Install pods
2830
run: cd sample/ios-app && pod install
2931
- name: build ios sample
3032
run: cd sample/ios-app && set -o pipefail && xcodebuild -scheme TestProj -workspace TestProj.xcworkspace -configuration Debug -sdk iphonesimulator -arch x86_64 build CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO | xcpretty
33+
env:
34+
GRADLE_OPTS: -Dkotlin.native.linkerOpts=-ld_classic

0 commit comments

Comments
 (0)