We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2b100d commit a99f35aCopy full SHA for a99f35a
.github/workflows/build-dependencies.yml
@@ -36,12 +36,22 @@ jobs:
36
cd libcob
37
emmake make INCLUDES=-I${HOME}/opt/include
38
make install
39
+
40
+ - name: Combine libraries
41
+ run : |
42
+ mkdir -p publish
43
+ cd publish
44
+ ar -x ${HOME}/opt/lib/libcob.a
45
+ ar -x ${HOME}/opt/lib/libgmp.a
46
+ wasm-ld *.o -o libcob.so --relocatable --no-entry
47
+ rm *.a
48
+ cp ./gnucobol-3.0-rc1/libcob.h .
49
50
- name: Release dependencies
51
uses: svenstaro/upload-release-action@v2
52
with:
53
repo_token: ${{ secrets.GITHUB_TOKEN }}
- file: /home/runner/opt/**/*
54
+ file: publish/*
55
file_glob: true
56
tag: 1.0
57
overwrite: true
0 commit comments