File tree Expand file tree Collapse file tree 1 file changed +19
-22
lines changed Expand file tree Collapse file tree 1 file changed +19
-22
lines changed Original file line number Diff line number Diff line change @@ -47,29 +47,26 @@ 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/
64
- cd artifacts ; \
65
- tar cvzf ../adflib-mingw-${{ matrix.build_type }}.tgz *
66
- cd ..
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
67
55
- uses : actions/upload-artifact@v4
68
56
with :
69
57
# name: adflib-${{ env.ADFLIB_TAG }}-mingw
70
58
name : adflib-mingw-${{ matrix.build_type }}
71
59
path : |
72
- adflib-mingw-${{ matrix.build_type }}.tgz
60
+ AUTHORS
61
+ BUGS.md
62
+ ChangeLog
63
+ COPYING*
64
+ NOTES.md
65
+ README.md
66
+ TODO
67
+ bin
68
+ doc
69
+ include
73
70
74
71
test :
75
72
needs : build
@@ -85,12 +82,12 @@ jobs:
85
82
# name: adflib-${{ env.ADFLIB_TAG }}-mingw
86
83
name : adflib-mingw-${{ matrix.build_type }}
87
84
path : .
88
- - name : extract file from the artifact
89
- run : tar xzvf adflib-mingw-${{ matrix.build_type }}.tgz
90
85
- name : list files extracted from the artifact
91
86
shell : bash
92
- run : find bin/
93
- - name : show properties of binaries (installed)
87
+ run : |
88
+ find bin/
89
+ find include/
90
+ - name : show properties of binaries
94
91
shell : bash
95
92
run : ldd bin/unadf
96
93
- name : configure tests
You can’t perform that action at this time.
0 commit comments