Skip to content

Stop building with -static-stdlib #275

Stop building with -static-stdlib

Stop building with -static-stdlib #275

Workflow file for this run

name: SwiftPM
on:
push:
branches: [main]
pull_request:
branches: ['*']
jobs:
Xcode:
strategy:
matrix:
xcode_version: ['14.1', '14.3.1']
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app
steps:
- uses: actions/checkout@v3
- run: xcodebuild -version
- run: swift -version
- run: swift test
Linux:
strategy:
matrix:
tag: ['5.7', '5.8']
runs-on: ubuntu-latest
container:
image: swift:${{ matrix.tag }}
steps:
- uses: actions/checkout@v3
- run: swift test --parallel