Skip to content

Update LLVM and Swift files for Swift 6 #82

Update LLVM and Swift files for Swift 6

Update LLVM and Swift files for Swift 6 #82

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
jobs:
test-bazel:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: SwiftyLab/setup-swift@v1
with:
swift-version: "https://download.swift.org/swift-6.0-branch/xcode/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-07-10-a/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-07-10-a-osx.pkg"
- name: Get swift version
run: swift --version
- run: bazelisk build --action_env=TOOLCHAINS=${{ env.TOOLCHAINS }} //...
- run: bazelisk test --action_env=TOOLCHAINS=${{ env.TOOLCHAINS }} //...
test-swiftpm:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: SwiftyLab/setup-swift@v1
with:
swift-version: "https://download.swift.org/swift-6.0-branch/xcode/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-07-10-a/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-07-10-a-osx.pkg"
- name: Get swift version
run: swift --version
- run: swift build
- run: swift test