File tree Expand file tree Collapse file tree 1 file changed +19
-19
lines changed Expand file tree Collapse file tree 1 file changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -47,20 +47,11 @@ jobs:
47
47
run : find build/
48
48
- name : prepare artifact
49
49
run : |
50
- mkdir -vp artifacts/bin
51
- cp -v build/shared/src/libadf* artifacts/bin/
52
- cp -v build/shared/examples/*.exe artifacts/bin/
53
- mkdir -v artifacts/include
54
- cp -vR src/*.h artifacts/include
55
- cp -vR BUGS.md \
56
- NOTES.md \
57
- README.md \
58
- COPYING* \
59
- AUTHORS \
60
- ChangeLog \
61
- TODO \
62
- doc \
63
- artifacts/
50
+ mkdir -vp bin
51
+ cp -v build/shared/src/libadf* bin/
52
+ cp -v build/shared/examples/*.exe bin/
53
+ mkdir -v include
54
+ cp -vR src/*.h include
64
55
cd artifacts ; \
65
56
tar cvzf ../adflib-mingw-${{ matrix.build_type }}.tgz *
66
57
cd ..
69
60
# name: adflib-${{ env.ADFLIB_TAG }}-mingw
70
61
name : adflib-mingw-${{ matrix.build_type }}
71
62
path : |
72
- adflib-mingw-${{ matrix.build_type }}.tgz
63
+ AUTHORS
64
+ BUGS.md
65
+ ChangeLog
66
+ COPYING*
67
+ NOTES.md
68
+ README.md
69
+ TODO
70
+ bin
71
+ doc
72
+ include
73
73
74
74
test :
75
75
needs : build
@@ -85,12 +85,12 @@ jobs:
85
85
# name: adflib-${{ env.ADFLIB_TAG }}-mingw
86
86
name : adflib-mingw-${{ matrix.build_type }}
87
87
path : .
88
- - name : extract file from the artifact
89
- run : tar xzvf adflib-mingw-${{ matrix.build_type }}.tgz
90
88
- name : list files extracted from the artifact
91
89
shell : bash
92
- run : find bin/
93
- - name : show properties of binaries (installed)
90
+ run : |
91
+ find bin/
92
+ find include/
93
+ - name : show properties of binaries
94
94
shell : bash
95
95
run : ldd bin/unadf
96
96
- name : configure tests
You can’t perform that action at this time.
0 commit comments