Try adding CI for MUSL #187
Workflow file for this run
This file contains 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: test | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: { types: [opened, reopened, synchronize, ready_for_review] } | |
push: { branches: [ main ] } | |
jobs: | |
unit-tests: | |
uses: vapor/ci/.github/workflows/run-unit-tests.yml@main | |
secrets: inherit | |
integration-check: | |
runs-on: ubuntu-latest | |
container: swift:noble | |
steps: | |
- uses: actions/checkout@v4 | |
with: { path: console-kit } | |
- uses: actions/checkout@v4 | |
with: { repository: 'vapor/vapor', path: vapor } | |
- run: swift package --package-path vapor edit console-kit --path console-kit | |
- run: SWIFT_DETERMINISTIC_HASHING=1 swift test --package-path vapor | |
musl-unit: | |
runs-on: ubuntu-latest | |
container: archlinux:latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install latest Swift from AUR | |
run: | | |
# https://www.reddit.com/r/archlinux/comments/6qu4jt/comment/dl1t5m9/ | |
pacman -Sy --needed --noconfirm sudo git base-devel patchelf | |
useradd builduser -m && passwd -d builduser && echo 'builduser ALL=(ALL) ALL' >> /etc/sudoers | |
sudo -u builduser bash -c \ | |
'cd ~ && git clone https://aur.archlinux.org/swift-bin.git && cd swift-bin && makepkg -si --noconfirm swift-bin' | |
- name: Run unit tests | |
run: | | |
SWIFT_DETERMINISTIC_HASHING=1 \ | |
swift test \ | |
--enable-code-coverage | |
- name: Upload coverage data | |
uses: vapor/[email protected] | |
with: | |
codecov_token: ${{ secrets.CODECOV_TOKEN || '' }} |