Build latest release branch
This commit is contained in:
parent
49d6732d47
commit
ce2c884aaf
5 changed files with 14 additions and 2 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
@ -53,7 +53,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
target: [win64]
|
target: [win64]
|
||||||
variant: [gpl,lgpl]
|
variant: [gpl,lgpl,gpl-4.2,lgpl-4.2]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -77,7 +77,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
target: [win64]
|
target: [win64]
|
||||||
variant: [gpl,lgpl]
|
variant: [gpl,lgpl,gpl-4.2,lgpl-4.2]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
4
variants/gpl-4.2.sh
Normal file
4
variants/gpl-4.2.sh
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
CONFIGURE="--enable-gpl --enable-version3"
|
||||||
|
CFLAGS=""
|
||||||
|
LDFLAGS=""
|
||||||
|
GIT_BRANCH="release/4.2"
|
4
variants/lgpl-4.2.sh
Normal file
4
variants/lgpl-4.2.sh
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
CONFIGURE="--enable-version3"
|
||||||
|
CFLAGS=""
|
||||||
|
LDFLAGS=""
|
||||||
|
GIT_BRANCH="release/4.2"
|
2
variants/win64-gpl-4.2.sh
Normal file
2
variants/win64-gpl-4.2.sh
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/bash
|
||||||
|
source "$(dirname "$BASH_SOURCE")/win64-gpl.sh"
|
2
variants/win64-lgpl-4.2.sh
Normal file
2
variants/win64-lgpl-4.2.sh
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/bash
|
||||||
|
source "$(dirname "$BASH_SOURCE")/win64-gpl.sh"
|
Loading…
Reference in a new issue