File tree Expand file tree Collapse file tree 3 files changed +23
-5
lines changed
Expand file tree Collapse file tree 3 files changed +23
-5
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,14 @@ jobs:
2525 - name : Build
2626 run : dub build :anisette-server -b release --compiler=aarch64-linux-gnu-gdc-12 -c "static"
2727
28+ - name : Rename
29+ run : mv "${{github.workspace}}/bin/provision_anisette-server" "${{github.workspace}}/bin/anisette-server-aarch64"
30+
2831 - uses : actions/upload-artifact@v3
2932 with :
3033 name : anisette-server-aarch64
3134 path : |
32- ${{github.workspace}}/bin/provision_anisette -server
35+ ${{github.workspace}}/bin/anisette -server-aarch64
3336
3437 build-anisette-server-armv7 :
3538 runs-on : ubuntu-22.04
4548 - name : Build
4649 run : dub build :anisette-server -b release --compiler=arm-linux-gnueabihf-gdc-12 -c "static"
4750
51+ - name : Rename
52+ run : mv "${{github.workspace}}/bin/provision_anisette-server" "${{github.workspace}}/bin/anisette-server-armv7"
53+
4854 - uses : actions/upload-artifact@v3
4955 with :
5056 name : anisette-server-armv7
5157 path : |
52- ${{github.workspace}}/bin/provision_anisette -server
58+ ${{github.workspace}}/bin/anisette -server-armv7
Original file line number Diff line number Diff line change @@ -24,10 +24,14 @@ jobs:
2424 - name : Build
2525 run : dub build :anisette-server -b release --compiler=gdc-12 -c "static"
2626
27+ - name : Rename
28+ run : mv "${{github.workspace}}/bin/provision_anisette-server" "${{github.workspace}}/bin/anisette-server-x86_64"
29+
2730 - uses : actions/upload-artifact@v3
2831 with :
2932 name : anisette-server-x86_64
30- path : ${{github.workspace}}/bin/provision_anisette-server
33+ path : |
34+ ${{github.workspace}}/bin/anisette-server-x86_64
3135
3236 build-anisette-server-i686 :
3337 runs-on : ubuntu-22.04
@@ -43,10 +47,14 @@ jobs:
4347 - name : Build
4448 run : dub build :anisette-server -b release --compiler=i686-linux-gnu-gdc-12 -c "static"
4549
50+ - name : Rename
51+ run : mv "${{github.workspace}}/bin/provision_anisette-server" "${{github.workspace}}/bin/anisette-server-i686"
52+
4653 - uses : actions/upload-artifact@v3
4754 with :
4855 name : anisette-server-i686
49- path : ${{github.workspace}}/bin/provision_anisette-server
56+ path : |
57+ ${{github.workspace}}/bin/anisette-server-i686
5058
5159 build-debug-rh :
5260 runs-on : ubuntu-22.04
6270 - name : Build
6371 run : dub build :retrieve-headers
6472
73+ - name : Rename
74+ run : mv "${{github.workspace}}/bin/provision_retrieve-headers" "${{github.workspace}}/bin/retrieve-headers-debug"
75+
6576 - uses : actions/upload-artifact@v3
6677 with :
6778 name : retrieve-headers-debug
68- path : ${{github.workspace}}/bin/provision_retrieve -headers
79+ path : ${{github.workspace}}/bin/retrieve -headers-debug
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ subPackage {
4747
4848 configuration "static" {
4949 targetType "executable"
50+ lflags "-lz" platform="ldc"
5051 dflags "--link-defaultlib-shared=false" platform="ldc"
5152 dflags "-defaultlib=:libgphobos.a" platform="gdc"
5253 }
You can’t perform that action at this time.
0 commit comments