We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fb1633 commit fe879b1Copy full SHA for fe879b1
1 file changed
.github/workflows/cmake.yml
@@ -13,14 +13,18 @@ jobs:
13
- uses: actions/checkout@v3
14
with:
15
submodules: recursive
16
-
+
17
+ - uses: dlang-community/setup-dlang@v1
18
+ with:
19
+ compiler: ldc-1.34.0
20
21
- name: Install dependencies
22
run: |
23
sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa
- sudo apt-get update && sudo apt-get install -y gdc dub libz-dev elfutils
24
+ sudo apt-get update && sudo apt-get install -y libz-dev elfutils
25
26
- name: Build
- run: dub build :anisette-server -b release --compiler=gdc -c "static"
27
+ run: dub build :anisette-server -b release -c "static"
28
29
- name: Rename
30
run: mv "${{github.workspace}}/bin/provision_anisette-server" "${{github.workspace}}/bin/anisette-server-x86_64"
0 commit comments