Add iPad support #298
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Linux | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Swift version | |
| run: swift --version | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| # The prebuilts cause linker errors. See https://github.com/stackotter/swift-bundler/pull/95#issuecomment-3421089725 for a related discussion. | |
| - name: Build | |
| run: swift build --disable-experimental-prebuilts | |
| - name: Install runtime dependencies | |
| run: sudo apt install -y patchelf | |
| - name: Test | |
| run: swift test --disable-experimental-prebuilts |