We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68de156 commit f4d3107Copy full SHA for f4d3107
.github/workflows/buildroot.yml
@@ -22,3 +22,13 @@ jobs:
22
with:
23
name: build-${{ matrix.arch }}
24
path: ./output/${{ matrix.arch }}/images
25
+ - name: Test
26
+ run: |
27
+ export SWIFT_BUILDROOT=$GITHUB_WORKSPACE
28
+ export SWIFT_TARGET_ARCH=${{ matrix.arch }}
29
+ $SWIFT_BUILDROOT/.devcontainer/build-scripts/test-swift.sh
30
+ - name: Upload test binary
31
+ uses: actions/upload-artifact@v3
32
+ with:
33
+ name: swift-hello-${{ matrix.arch }}
34
+ path: ./output/${{ matrix.arch }}/target/usr/bin/swift-hello
0 commit comments