Skip to content
Draft
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
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ jobs:
ARCH: arm64
OS: macos
EXECUTION_TYPE: ${{ matrix.execution_type }}
APPLE_SDK_VERSION_OVERRIDE: 26.5
run: python3 infra/test-all.py --package=${{ matrix.test_package }}

linux-test-matrix:
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ use_repo(maven, "maven")

bazel_dep(name = "rules_kotlin", version = "2.3.20")
bazel_dep(name = "rules_perl", version = "1.1.1")
bazel_dep(name = "rules_swift", version = "3.6.1")
bazel_dep(name = "rules_swift", version = "4.0.0-rc2")
bazel_dep(name = "rules_nodejs", version = "6.7.4")
bazel_dep(name = "aspect_rules_ts", version = "3.8.10")
bazel_dep(name = "aspect_bazel_lib", version = "2.22.5")
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ locally before attempting remote execution.

```sh
# --config=clang isn't required on macOS
bazel build --config=clang //swift:tests
bazel build --config=clang //swift/...
```

### Testing locally
Expand Down Expand Up @@ -100,7 +100,7 @@ locally before attempting remote execution.

```sh
# --config=clang isn't required on macOS
bazel test --config=clang //swift:tests
bazel test --config=clang //swift/...
```

## Remote execution
Expand Down
1 change: 0 additions & 1 deletion platform/macos_arm64/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,3 @@ available_xcodes(
":version26_5_0_17F42",
],
)

5 changes: 2 additions & 3 deletions swift/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ swift_test(
size = "small",
srcs = [
"example.swift",
"main.swift",
#"main.swift",
],
tags = [
"manual",
"no-ci", # Broken toolchain setup
"no-linux-ci", # No linux swift toolchains currently defined.
],
)
Loading