Skip to content

Commit

Permalink
V1.0.0 (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
leogdion authored Jan 15, 2025
1 parent b4aaf0f commit df8d379
Show file tree
Hide file tree
Showing 27 changed files with 2,183 additions and 13 deletions.
39 changes: 39 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"name": "Swift",
"image": "swift:6.0",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": "false",
"username": "vscode",
"upgradePackages": "false"
},
"ghcr.io/devcontainers/features/git:1": {
"version": "os-provided",
"ppa": "false"
}
},
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
],
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Set *default* container specific settings.json values on container create.
"settings": {
"lldb.library": "/usr/lib/liblldb.so"
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"sswg.swift-lang"
]
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Set `remoteUser` to `root` to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode"
}
39 changes: 39 additions & 0 deletions .devcontainer/swift-5.9/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"name": "Swift",
"image": "swift:5.9",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": "false",
"username": "vscode",
"upgradePackages": "false"
},
"ghcr.io/devcontainers/features/git:1": {
"version": "os-provided",
"ppa": "false"
}
},
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
],
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Set *default* container specific settings.json values on container create.
"settings": {
"lldb.library": "/usr/lib/liblldb.so"
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"sswg.swift-lang"
]
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Set `remoteUser` to `root` to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "root"
}
39 changes: 39 additions & 0 deletions .devcontainer/swift-6.0/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"name": "Swift",
"image": "swift:6.0",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": "false",
"username": "vscode",
"upgradePackages": "false"
},
"ghcr.io/devcontainers/features/git:1": {
"version": "os-provided",
"ppa": "false"
}
},
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
],
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Set *default* container specific settings.json values on container create.
"settings": {
"lldb.library": "/usr/lib/liblldb.so"
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"sswg.swift-lang"
]
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Set `remoteUser` to `root` to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode"
}
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "swift" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
262 changes: 262 additions & 0 deletions .github/workflows/OSVer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,262 @@
name: OSVer
on:
push:
branches-ignore:
- '*WIP'

jobs:
build-ubuntu:
name: Build on Ubuntu
env:
PACKAGE_NAME: OSVer
SWIFT_VER: ${{ matrix.swift-version }}
runs-on: ${{ matrix.runs-on }}
if: "!contains(github.event.head_commit.message, 'ci skip')"
strategy:
matrix:
runs-on: [ubuntu-20.04, ubuntu-22.04]
swift-version: [5.9, "5.10", "6.0"]
steps:
- uses: actions/checkout@v4
- name: Cache swift package modules
id: cache-spm-linux
uses: actions/cache@v4
env:
cache-name: SPM
with:
path: .build
key: ${{ env.cache-name }}-${{ runner.os }}-${{ env.SWIFT_VER }}-${{ hashFiles('Package.resolved') }}-${{ env.RELEASE_DOT }}
restore-keys: |
${{ env.cache-name }}-${{ runner.os }}-${{ env.SWIFT_VER }}-${{ hashFiles('Package.resolved') }}
${{ env.cache-name }}-${{ runner.os }}-${{ env.SWIFT_VER }}
- name: Set Ubuntu Release DOT
run: echo "RELEASE_DOT=$(lsb_release -sr)" >> $GITHUB_ENV
- name: Set Ubuntu Release NUM
run: echo "RELEASE_NUM=${RELEASE_DOT//[-._]/}" >> $GITHUB_ENV
- name: Set Ubuntu Codename
run: echo "RELEASE_NAME=$(lsb_release -sc)" >> $GITHUB_ENV
- name: Cache swift
id: cache-swift-linux
uses: actions/cache@v4
env:
cache-name: swift
with:
path: swift-${{ env.SWIFT_VER }}-RELEASE-ubuntu${{ env.RELEASE_DOT }}
key: ${{ env.cache-name }}-${{ runner.os }}-${{ env.SWIFT_VER }}-${{ env.RELEASE_DOT }}
- name: Download Swift
if: steps.cache-swift-linux.outputs.cache-hit != 'true'
run: curl -O https://download.swift.org/swift-${SWIFT_VER}-release/ubuntu${RELEASE_NUM}/swift-${SWIFT_VER}-RELEASE/swift-${SWIFT_VER}-RELEASE-ubuntu${RELEASE_DOT}.tar.gz
- name: Extract Swift
if: steps.cache-swift-linux.outputs.cache-hit != 'true'
run: tar xzf swift-${SWIFT_VER}-RELEASE-ubuntu${RELEASE_DOT}.tar.gz
- name: Add Path
run: echo "$GITHUB_WORKSPACE/swift-${SWIFT_VER}-RELEASE-ubuntu${RELEASE_DOT}/usr/bin" >> $GITHUB_PATH
- name: Build
run: swift build
- name: Run tests
run: swift test --enable-test-discovery --enable-code-coverage
- name: Prepare Code Coverage
run: llvm-cov export -format="lcov" .build/x86_64-unknown-linux-gnu/debug/${{ env.PACKAGE_NAME }}PackageTests.xctest -instr-profile .build/debug/codecov/default.profdata > info.lcov
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: spm,${{ env.RELEASE_NAME }},${{ env.SWIFT_VER }}
build-macos:
name: Build on macOS
env:
PACKAGE_NAME: OSVer
runs-on: ${{ matrix.runs-on }}
if: "!contains(github.event.head_commit.message, 'ci skip')"
strategy:
fail-fast: false
matrix:
include:
# SPM Build Matrix
- runs-on: macos-14
xcode: "/Applications/Xcode_15.0.1.app"
- runs-on: macos-14
xcode: "/Applications/Xcode_15.1.app"
- runs-on: macos-14
xcode: "/Applications/Xcode_15.2.app"
- runs-on: macos-15
xcode: "/Applications/Xcode_16.1.app"
- runs-on: macos-15
xcode: "/Applications/Xcode_16.2.app"

# iOS Build Matrix
- type: ios
runs-on: macos-14
xcode: "/Applications/Xcode_15.0.1.app"
deviceName: "iPhone 15"
osVersion: "17.0.1"
- type: ios
runs-on: macos-14
xcode: "/Applications/Xcode_15.1.app"
deviceName: "iPhone 15 Pro"
osVersion: "17.2"
- type: ios
runs-on: macos-14
xcode: "/Applications/Xcode_15.2.app"
deviceName: "iPhone 15 Pro Max"
osVersion: "17.2"
- type: ios
runs-on: macos-15
xcode: "/Applications/Xcode_16.1.app"
deviceName: "iPhone 16"
osVersion: "18.1"
- type: ios
runs-on: macos-15
xcode: "/Applications/Xcode_16.2.app"
deviceName: "iPhone 16 Pro"
osVersion: "18.2"

# watchOS Build Matrix
- type: watchos
runs-on: macos-14
xcode: "/Applications/Xcode_15.0.1.app"
deviceName: "Apple Watch Series 9 (41mm)"
osVersion: "10.0"
- type: watchos
runs-on: macos-14
xcode: "/Applications/Xcode_15.1.app"
deviceName: "Apple Watch Series 9 (45mm)"
osVersion: "10.2"
- type: watchos
runs-on: macos-14
xcode: "/Applications/Xcode_15.2.app"
deviceName: "Apple Watch Ultra 2 (49mm)"
osVersion: "10.2"
- type: watchos
runs-on: macos-15
xcode: "/Applications/Xcode_16.1.app"
deviceName: "Apple Watch Ultra 2 (49mm)"
osVersion: "11.1"
- type: watchos
runs-on: macos-15
xcode: "/Applications/Xcode_16.2.app"
deviceName: "Apple Watch Ultra 2 (49mm)"
osVersion: "11.2"

# visionOS Build Matrix
- type: visionos
runs-on: macos-15
xcode: "/Applications/Xcode_16.2.app"
deviceName: "Apple Vision Pro"
osVersion: "2.1"

# tvOS Build Matrix
- type: tvos
runs-on: macos-15
xcode: "/Applications/Xcode_16.2.app"
deviceName: "Apple TV 4K (3rd generation)"
osVersion: "18.2"

steps:
- uses: actions/checkout@v4

- name: Set Xcode Name
run: echo "XCODE_NAME=$(basename -- ${{ matrix.xcode }} | sed 's/\.[^.]*$//' | cut -d'_' -f2)" >> $GITHUB_ENV

- name: Setup Xcode
run: sudo xcode-select -s ${{ matrix.xcode }}/Contents/Developer

- name: Set SDK and Platform
if: matrix.type
run: |
case ${{ matrix.type }} in
ios)
echo "PLATFORM=iOS Simulator" >> $GITHUB_ENV
echo "SDK=iphonesimulator" >> $GITHUB_ENV
;;
watchos)
echo "PLATFORM=watchOS Simulator" >> $GITHUB_ENV
echo "SDK=watchsimulator" >> $GITHUB_ENV
;;
visionos)
echo "PLATFORM=visionOS Simulator" >> $GITHUB_ENV
echo "SDK=xrsimulator" >> $GITHUB_ENV
;;
tvos)
echo "PLATFORM=tvOS Simulator" >> $GITHUB_ENV
echo "SDK=appletvsimulator" >> $GITHUB_ENV
;;
esac
- uses: irgaly/xcode-cache@v1
if: matrix.type
with:
key: xcode-${{ runner.os }}-${{ matrix.runs-on }}-${{ env.XCODE_NAME }}-${{ hashFiles('Package.resolved') }}-${{ github.sha }}
restore-keys: |
xcode-${{ runner.os }}-${{ matrix.runs-on }}-${{ env.XCODE_NAME }}-${{ hashFiles('Package.resolved') }}-
xcode-${{ runner.os }}-${{ matrix.runs-on }}-${{ env.XCODE_NAME }}-
- name: Cache swift package modules
id: cache-spm-macos
if: "!matrix.type"
uses: actions/cache@v4
env:
cache-name: cache-spm
with:
path: .build
key: spm-${{ runner.os }}-${{ matrix.runs-on }}-${{ env.XCODE_NAME }}-${{ hashFiles('Package.resolved') }}
restore-keys: |
spm-${{ runner.os }}-${{ matrix.runs-on }}-${{ env.XCODE_NAME }}-
- name: Build SPM
if: "!matrix.type"
run: swift build

- name: Run Swift Package tests
if: "!matrix.type"
run: swift test -v --enable-code-coverage

# Common iOS/watchOS Test Steps
- name: Run Device Tests
if: matrix.type
run: >
xcodebuild test
-scheme ${{ env.PACKAGE_NAME }}
-sdk ${{ env.SDK }}
-destination 'platform=${{ env.PLATFORM }},name=${{ matrix.deviceName }},OS=${{ matrix.osVersion }}'
-enableCodeCoverage YES
# Common Coverage Steps
- name: Process Coverage
uses: sersoft-gmbh/swift-coverage-action@v4
with:
fail-on-empty-output: true

- name: Upload Coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: ${{ matrix.type && format('{0}{1}', matrix.type, matrix.osVersion) || 'spm' }}
lint:
name: Linting
if: "!contains(github.event.head_commit.message, 'ci skip')"
runs-on: ubuntu-latest
needs: [build-ubuntu, build-macos]
env:
MINT_PATH: .mint/lib
MINT_LINK_PATH: .mint/bin
steps:
- uses: actions/checkout@v4
- name: Cache mint
id: cache-mint
uses: actions/cache@v4
env:
cache-name: cache
with:
path: |
.mint
Mint
key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
restore-keys: |
${{ runner.os }}-mint-
- name: Install mint
if: steps.cache-mint.outputs.cache-hit != 'true'
run: |
git clone https://github.com/yonaskolb/Mint.git
cd Mint
swift run mint install yonaskolb/mint
- name: Lint
run: ./Scripts/lint.sh
Loading

0 comments on commit df8d379

Please sign in to comment.