Skip to content

Commit

Permalink
Fixing swift
Browse files Browse the repository at this point in the history
  • Loading branch information
oldergod committed Nov 8, 2024
1 parent ec51df1 commit b1b2ec5
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.4.0
xcode-version: latest-stable

# We set `SDKROOT` as a workaround for https://github.com/gradle/gradle/pull/29227
- name: Check test files
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.4.0
xcode-version: latest-stable

# We set `SDKROOT` as a workaround for https://github.com/gradle/gradle/pull/29227
- name: Test Swift Runtime
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.4.0
xcode-version: latest-stable

# We set `SDKROOT` as a workaround for https://github.com/gradle/gradle/pull/29227
- name: Upload Artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.4.0
xcode-version: latest-stable

# We set `SDKROOT` as a workaround for https://github.com/gradle/gradle/pull/29227
- name: Upload Artifacts
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.4.0
xcode-version: latest-stable

- name: Set up Python
uses: actions/setup-python@v5
Expand Down
1 change: 1 addition & 0 deletions wire-runtime-swift/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ plugins {
}

library {
sourceCompatibility = SwiftVersion.SWIFT5
module.set("Wire")
}

Expand Down
1 change: 1 addition & 0 deletions wire-tests-proto3-swift/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
}

library {
sourceCompatibility = SwiftVersion.SWIFT5
dependencies {
api(projects.wireRuntimeSwift)
}
Expand Down
1 change: 1 addition & 0 deletions wire-tests-swift/manifest/module_one/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
}

library {
sourceCompatibility = SwiftVersion.SWIFT5
dependencies {
api(projects.wireRuntimeSwift)
}
Expand Down
1 change: 1 addition & 0 deletions wire-tests-swift/manifest/module_three/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
}

library {
sourceCompatibility = SwiftVersion.SWIFT5
dependencies {
api(projects.wireRuntimeSwift)
implementation(projects.wireTestsSwift.manifest.moduleOne)
Expand Down
1 change: 1 addition & 0 deletions wire-tests-swift/manifest/module_two/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
}

library {
sourceCompatibility = SwiftVersion.SWIFT5
dependencies {
api(projects.wireRuntimeSwift)
implementation(projects.wireTestsSwift.manifest.moduleOne)
Expand Down
1 change: 1 addition & 0 deletions wire-tests-swift/no-manifest/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
}

library {
sourceCompatibility = SwiftVersion.SWIFT5
dependencies {
api(projects.wireRuntimeSwift)
}
Expand Down

0 comments on commit b1b2ec5

Please sign in to comment.