Skip to content
Open
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
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
testPlan: "macOS"
outputFilter: xcbeautify --renderer github-actions
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: ${{ matrix.name }}
run: |-
set -o pipefail
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
name: "Catalyst 15.0"
runsOn: macOS-14
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install Firewalk
run: brew install alamofire/alamofire/firewalk || brew upgrade alamofire/alamofire/firewalk && firewalk &
- name: Catalyst
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
xcode: "Xcode_15.0.1"
runsOn: macOS-14
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install Firewalk
run: brew install alamofire/alamofire/firewalk || brew upgrade alamofire/alamofire/firewalk && firewalk &
- name: ${{ matrix.name }}
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
xcode: "Xcode_15.0.1"
runsOn: macOS-14
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install Firewalk
run: brew install alamofire/alamofire/firewalk || brew upgrade alamofire/alamofire/firewalk && firewalk &
- name: ${{ matrix.name }}
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
xcode: "Xcode_15.2"
runsOn: firebreak
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install Firewalk
run: brew install alamofire/alamofire/firewalk || brew upgrade alamofire/alamofire/firewalk && firewalk &
- name: ${{ matrix.name }}
Expand Down Expand Up @@ -261,7 +261,7 @@ jobs:
xcode: "Xcode_15.0.1"
runsOn: macOS-14
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install Firewalk
run: brew update && brew install alamofire/alamofire/firewalk || brew upgrade alamofire/alamofire/firewalk && firewalk &
- name: ${{ matrix.name }}
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
name: "macOS 14, SPM 5.9.0 Test"
outputFilter: xcbeautify --renderer github-actions
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install Firewalk
run: brew install alamofire/alamofire/firewalk || brew upgrade alamofire/alamofire/firewalk xcbeautify && firewalk &
- name: Test SPM
Expand All @@ -322,7 +322,7 @@ jobs:
image: ${{ matrix.image }}
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: "Fix @MainActor in Tests"
# cannot build tests with @MainActor (added in https://github.com/Alamofire/Alamofire/pull/3920) due to https://github.com/swiftlang/swift-package-manager/pull/5525
run: sed -i'' 's;@MainActor;;g' Tests/*.swift
Expand All @@ -335,7 +335,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: "Fix @MainActor in Tests"
# cannot build tests with @MainActor (added in https://github.com/Alamofire/Alamofire/pull/3920) due to https://github.com/swiftlang/swift-package-manager/pull/5525
run: sed -i'' 's;@MainActor;;g' Tests/*.swift
Expand All @@ -362,7 +362,7 @@ jobs:
branch: ${{ matrix.branch }}
tag: ${{ matrix.tag }}
- name: Clone
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: SPM ${{ matrix.name }}
run: |
swift build --build-tests -c debug -Xlinker /INCREMENTAL:NO -v
Expand All @@ -374,7 +374,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Clone
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
Expand Down
Loading