File tree 3 files changed +5
-33
lines changed
3 files changed +5
-33
lines changed Original file line number Diff line number Diff line change @@ -21,28 +21,10 @@ jobs:
21
21
ARCH=$(uname -m)
22
22
wget --quiet https://github.com/ldc-developers/ldc/releases/download/v${LDC_VERSION}/ldc2-${LDC_VERSION}-linux-${ARCH}.tar.xz
23
23
tar xf ldc2-${LDC_VERSION}-linux-${ARCH}.tar.xz
24
- ls -ld
25
- ls -l
26
- ls -l ./BioD/contrib/msgpack-d/src
27
- ls -l BioD/contrib/msgpack-d/src
28
- pwd
29
24
echo "ldc2-${LDC_VERSION}-linux-${ARCH}/bin" >> $GITHUB_PATH
30
25
31
26
- name : Build & test
32
- run : make -j2 check
33
-
34
- - name : Create artifact
35
- run : |
36
- VERSION=$(cat VERSION)
37
- mkdir artifact
38
- gzip --stdout bin/sambamba-${VERSION} > artifact/sambamba-${VERSION}-linux-amd64-static.gz
39
-
40
- - name : Upload artifact
41
- uses : actions/upload-artifact@v1
42
- with :
43
- name : sambamba-binary-archives
44
- path : artifact
45
-
27
+ run : make -j2 VERBOSE=1 check
46
28
47
29
build-aarch64 :
48
30
name : Build aarch64
72
54
source $HOME/.env
73
55
cd /sambamba
74
56
make -j2 check
75
- VERSION=$(cat VERSION)
76
- file bin/sambamba-${VERSION}
77
- mkdir artifact
78
- gzip --stdout bin/sambamba-${VERSION} > artifact/sambamba-${VERSION}-linux-arm64-static.gz
79
-
80
- - name : Upload artifact
81
- uses : actions/upload-artifact@v1
82
- with :
83
- name : sambamba-binary-archives
84
- path : artifact
Original file line number Diff line number Diff line change @@ -46,9 +46,8 @@ LDFLAGS = -L=-flto=full
46
46
# DLIBS = $(LIBRARY_PATH)/libphobos2-ldc.a $(LIBRARY_PATH)/libdruntime-ldc.a
47
47
# DLIBS_DEBUG = $(LIBRARY_PATH)/libphobos2-ldc-debug.a $(LIBRARY_PATH)/libdruntime-ldc-debug.a
48
48
# LIBS = -L-L$(LIBRARY_PATH) -L-lpthread -L-lm -L-lz -L-llz4
49
- # LIBS_STATIC = $(LIBRARY_PATH)/libc.a $(DLIBS) -L-llz4 -L-lz
49
+ LIBS = -L-lz -L-llz4
50
50
LIBS_STATIC = -L-lz -L-llz4 -L-L$(LIBRARY_PATH ) -L-lphobos2-ldc -L-ldruntime-ldc
51
- # -L-lphobos2-ldc -L-ldruntime-ldc
52
51
SRC = $(wildcard main.d utils/* .d thirdparty/* .d) $(wildcard BioD/contrib/undead/* .d BioD/contrib/undead/* /* .d) $(wildcard BioD/bio/* /* .d BioD/bio/* /* /* .d BioD/bio/* /* /* /* .d BioD/bio/* /* /* /* /* .d BioD/bio/* /* /* /* /* /* /* .d BioD/contrib/msgpack-d/src/msgpack/* .d) $(wildcard sambamba/* .d sambamba/* /* .d sambamba/* /* /* .d)
53
52
OBJ = $(SRC:.d=.o )
54
53
OUT = bin/sambamba-$(shell cat VERSION)
@@ -69,8 +68,9 @@ static: DFLAGS += -static -L-Bstatic -link-defaultlib
69
68
70
69
pgo-static : DFLAGS += -fprofile-instr-use=profile.data
71
70
71
+ # note use python3 for github CI:
72
72
utils/ldc_version_info_.d :
73
- python ./gen_ldc_version_info.py $(shell which ldmd2) > utils/ldc_version_info_.d
73
+ python3 ./gen_ldc_version_info.py $(shell which ldmd2) > utils/ldc_version_info_.d
74
74
cat utils/ldc_version_info_.d
75
75
76
76
ldc_version_info : utils/ldc_version_info_.d
Original file line number Diff line number Diff line change 1
- ## ChangeLog v1.0.1 (20230815 )
1
+ ## ChangeLog v1.0.1 (20230816 )
2
2
3
3
+ Fixed the build for recent ldc2 compilers by using a recent msgpack
4
4
+ Ran benchmarks and optimized meson build
You can’t perform that action at this time.
0 commit comments