Skip to content

Commit 4050fcf

Browse files
committed
ci: DLL wasn't being compiled!
1 parent f9dd303 commit 4050fcf

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ jobs:
3939
distribution: 'temurin'
4040
cache: maven
4141

42+
- name: Install MinGW-w64 cross-compiler
43+
run: sudo apt-get install -y mingw-w64
44+
4245
- name: Set release version
4346
run: |
4447
./mvnw --no-transfer-progress --batch-mode versions:set -DnewVersion=${{ inputs.version }} -DprocessAllModules=true versions:commit
@@ -51,7 +54,7 @@ jobs:
5154
{} \;
5255
5356
- name: Build and deploy to staging
54-
run: ./mvnw --no-transfer-progress --batch-mode clean deploy -Prelease
57+
run: ./mvnw --no-transfer-progress --batch-mode clean deploy -Prelease,cross-windows
5558

5659
- name: Commit release version
5760
run: |

examples/run-ffm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env bash
22

3-
DEP="org.codejive.miniterm:miniterm:0.1.4"
3+
DEP="org.codejive.miniterm:miniterm-ffm:0.1.4"
44
if [[ -n "$1" ]]; then
5-
DEP="org.codejive.miniterm:miniterm:$1"
5+
DEP="org.codejive.miniterm:miniterm-ffm:$1"
66
fi
77

88
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

0 commit comments

Comments
 (0)