Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

๐Ÿค– Bump minimum macOS and Swift version #359

Merged
merged 2 commits into from
Mar 9, 2024
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:

swiftlint:
name: SwiftLint
runs-on: macos-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- run: swiftlint --strict --quiet --reporter github-actions-logging

install:
name: Install Script
runs-on: macos-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Install Rugby
Expand All @@ -35,7 +35,7 @@ jobs:

release:
name: Build Binary
runs-on: macos-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
Expand All @@ -48,7 +48,7 @@ jobs:

unit-tests:
name: Unit Tests
runs-on: macos-latest
runs-on: macos-13
env:
LCOV_PATH: .build/artifacts/info.lcov
BUILD_FOLDER: .build/debug/RugbyPackageTests.xctest/Contents/MacOS/RugbyPackageTests
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
smoke-build-frameworks:
name: Smoke Build (Frameworks)
needs: unit-tests
runs-on: macos-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
smoke-build-libs:
name: Smoke Build (Libraries)
needs: unit-tests
runs-on: macos-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
smoke-test-multiproj:
name: Smoke Test (Multiproj)
needs: unit-tests
runs-on: macos-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
smoke-test:
name: Smoke Test (Frameworks)
needs: unit-tests
runs-on: macos-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:

jobs:
bump:
runs-on: macos-latest
runs-on: macos-13
steps:
# Checkout with custom token for pushin to protected branch
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// swift-tools-version:5.7
// swift-tools-version:5.8

import PackageDescription

let package = Package(
name: "Rugby",
platforms: [.macOS(.v12)],
platforms: [.macOS(.v13)],
products: [
.executable(name: "rugby", targets: ["Rugby"]),
.library(name: "RugbyFoundation", targets: ["RugbyFoundation"])
Expand Down
Loading