-
-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (37 loc) · 907 Bytes
/
d.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
name: D
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
dub_test:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
with:
path: vessel
- name: Checkout libmoss source
uses: actions/checkout@v3
with:
repository: serpent-os/libmoss
path: libmoss
ref: main
- name: Checkout moss-service source
uses: actions/checkout@v3
with:
repository: serpent-os/moss-service
path: moss-service
ref: main
- name: Setup D compiler
uses: dlang-community/[email protected]
with:
compiler: ldc-1.32.0
- name: Install deps
run: |
sudo apt-get install libcurl4-openssl-dev liblmdb-dev libsodium-dev libxxhash-dev libzstd-dev
- name: Build & Test
run: |
cd vessel
dub test