File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -5575,6 +5575,13 @@ jobs:
5575
5575
path : ${{ github.workspace }}/SourceCache/swift-win32
5576
5576
show-progress : false
5577
5577
5578
+
5579
+ with :
5580
+ repository : pointfreeco/swift-issue-reporting
5581
+ ref : refs/heads/main
5582
+ path : ${{ github.workspace }}/SourceCache/swift-issue-reporting
5583
+ show-progress : false
5584
+
5578
5585
- name : Download Swift SDK Installer (${{ inputs.release && 'online' || 'offline' }})
5579
5586
uses : actions/download-artifact@v4
5580
5587
with :
@@ -5615,11 +5622,17 @@ jobs:
5615
5622
echo "$env:Path" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8
5616
5623
Get-ChildItem Env: | % { echo "$($_.Name)=$($_.Value)" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append }
5617
5624
5618
- - run : swift build
5625
+ - name : Build & Test compnerd/swift-win32
5619
5626
working-directory : ${{ github.workspace }}/SourceCache/swift-win32
5627
+ run : |
5628
+ swift build
5629
+ swift test -Xswiftc -DENABLE_TESTING
5620
5630
5621
- - run : swift test -Xswiftc -DENABLE_TESTING
5622
- working-directory : ${{ github.workspace }}/SourceCache/swift-win32
5631
+ - name : Build & Test pointfreeco/swift-issue-reporting
5632
+ working-directory : ${{ github.workspace }}/SourceCache/swift-issue-reporting
5633
+ run : |
5634
+ swift build -c release
5635
+ swift test -c release
5623
5636
5624
5637
# Ensures redistributables contain all expected DLLs.
5625
5638
redistributable_smoke_test :
You can’t perform that action at this time.
0 commit comments