Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrandonw committed Sep 13, 2024
1 parent 66433ae commit 0fada95
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,31 +28,31 @@ jobs:
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Skip macro validation
run: defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES
- name: Run tests
run: make test-swift
- name: Build platforms ${{ matrix.config }}
run: CONFIG=${{ matrix.config }} make build-all-platforms
# - name: Run tests
# run: make test-swift
# - name: Build platforms ${{ matrix.config }}
# run: CONFIG=${{ matrix.config }} make build-all-platforms
- name: Integration tests
if: ${{ matrix.config }} == 'Debug'
run: make test-integration
- name: Build for library evolution
if: ${{ matrix.config }} == 'Release'
run: make build-for-library-evolution

ubuntu:
strategy:
matrix:
swift:
- '5.10'
name: Ubuntu (Swift ${{ matrix.swift }})
runs-on: ubuntu-latest
container: swift:${{ matrix.swift }}
steps:
- uses: actions/checkout@v4
- name: Run tests
run: swift test --parallel
- name: Run tests (release)
run: swift test -c release --parallel
# ubuntu:
# strategy:
# matrix:
# swift:
# - '5.10'
# name: Ubuntu (Swift ${{ matrix.swift }})
# runs-on: ubuntu-latest
# container: swift:${{ matrix.swift }}
# steps:
# - uses: actions/checkout@v4
# - name: Run tests
# run: swift test --parallel
# - name: Run tests (release)
# run: swift test -c release --parallel

wasm:
name: SwiftWasm
Expand Down
2 changes: 1 addition & 1 deletion Sources/Dependencies/DependencyValues/URLSession.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import Foundation

#if canImport(FoundationNetworking)
import FoundationNetworking
@preconcurrency import FoundationNetworking
#endif

extension DependencyValues {
Expand Down

0 comments on commit 0fada95

Please sign in to comment.