diff options
| author | John J. Camilleri <john@digitalgrammars.com> | 2020-11-19 14:56:51 +0100 |
|---|---|---|
| committer | John J. Camilleri <john@digitalgrammars.com> | 2020-11-19 14:56:51 +0100 |
| commit | af9c8ee553c2eef90742679342e873470ee22fa1 (patch) | |
| tree | f7113eab71b95ec2a017cd776155e1e73f3d6b6e /.github | |
| parent | 3e20e735a3fe8c57a01ea75b647f89e16422e323 (diff) | |
Add compiled C runtime to artifact in Windows build
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build-windows-package.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/build-windows-package.yml b/.github/workflows/build-windows-package.yml index 9358e87f7..1432b754b 100644 --- a/.github/workflows/build-windows-package.yml +++ b/.github/workflows/build-windows-package.yml @@ -44,6 +44,23 @@ jobs: make make install + - name: Upload C runtime to artifact + uses: actions/upload-artifact@v2 + with: + name: gf-${{ github.sha }}-windows + path: | + /mingw64/bin/libpgf-0.dll + /mingw64/bin/libgu-0.dll + if-no-files-found: error + + # - name: Build Java bindings + # + # - name: Upload Java bindings to artifact + # + # - name: Build Python bindings + # + # - name: Upload Python bindings to artifact + - name: Build GF run: | cabal install --only-dependencies -fserver |
