-
-
Notifications
You must be signed in to change notification settings - Fork 54
48 lines (45 loc) · 1.7 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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
with:
with_windows: true
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 && sed -i~ "s/swiftc;/swiftc llvm-cov;/" PKGBUILD && 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 || '' }}