Skip to content

Lower Swift tools version from 6.3 to 6.2 #128

Lower Swift tools version from 6.3 to 6.2

Lower Swift tools version from 6.3 to 6.2 #128

Workflow file for this run

name: Swift
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
macos-build:
name: macOS
runs-on: macos-26
strategy:
matrix:
swift: ["6.3"]
steps:
- name: Set up Xcode
run: sudo xcode-select -s "/Applications/Xcode_26.4.app"
- uses: actions/checkout@v6
with:
submodules: true
- name: Build
run: swift build
- name: Build XCFramework
run: ./Scripts/create-xcframework.sh
- name: Upload XCFramework
uses: actions/upload-artifact@v7
with:
path: .build/Xcode/Frameworks/Compute.xcframework.zip
archive: false
linux-build:
name: Linux
runs-on: ubuntu-latest
strategy:
matrix:
swift: ["6.3"]
container:
image: swift:${{ matrix.swift }}-jammy
steps:
- name: Install dependencies
run: |
apt-get update
apt-get install -y libssl-dev
- uses: actions/checkout@v6
with:
submodules: true
- name: Build
run: swift build