Skip to content
Merged
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
11 changes: 11 additions & 0 deletions .github/workflows/swift_package_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,8 @@ jobs:
run: echo "DEVELOPER_DIR=/Applications/Xcode_${{ matrix.xcode_version }}.app" >> $GITHUB_ENV
- name: Swift version
run: xcrun swift --version
- name: Clang version
run: xcrun clang --version
- name: Pre-build
run: ${{ inputs.macos_pre_build_command }}
- name: Build / Test
Expand All @@ -202,6 +204,8 @@ jobs:
steps:
- name: Swift version
run: swift --version
- name: Clang version
run: clang --version
- name: Checkout repository
uses: actions/checkout@v4
if: ${{ matrix.os_version != 'amazonlinux2' }}
Expand Down Expand Up @@ -244,6 +248,8 @@ jobs:
steps:
- name: Swift version
run: swift --version
- name: Clang version
run: clang --version
- name: Checkout repository
uses: actions/checkout@v4
if: ${{ matrix.os_version != 'amazonlinux2' }}
Expand Down Expand Up @@ -299,6 +305,8 @@ jobs:
steps:
- name: Swift version
run: swift --version
- name: Clang version
run: clang --version
- name: Checkout repository
uses: actions/checkout@v4
if: ${{ matrix.os_version != 'amazonlinux2' }}
Expand Down Expand Up @@ -354,6 +362,8 @@ jobs:
steps:
- name: Swift version
run: swift --version
- name: Clang version
run: clang --version
- name: Checkout repository
uses: actions/checkout@v4
- name: Provide token
Expand Down Expand Up @@ -458,6 +468,7 @@ jobs:
}
Invoke-Program swift --version
Invoke-Program swift test --version
Invoke-Program clang --version
Invoke-Program cd $Source
'@ >> $env:TEMP\test-script\run.ps1

Expand Down