File tree Expand file tree Collapse file tree 4 files changed +9
-0
lines changed
Expand file tree Collapse file tree 4 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -204,6 +204,8 @@ jobs:
204204 variant : gpl 5.0
205205 - target : win64
206206 variant : gpl 4.4
207+ - target : win64
208+ variant : gpl 4.3
207209 steps :
208210 - name : Free Disk-Space
209211 run : df -h && sudo apt-get clean && docker system prune -a -f && sudo rm -rf /opt/ghc /usr/local/.ghcup /usr/local/lib/android && df -h
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ GIT_BRANCH=" release/4.3"
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ SCRIPT_REPO="https://code.videolan.org/rist/librist.git"
44SCRIPT_COMMIT=" 1a5013b59ce098465e835a0510cd395872bb1c24"
55
66ffbuild_enabled () {
7+ (( $(ffbuild_ffver) >= 404 )) || return -1
78 return 0
89}
910
@@ -47,5 +48,6 @@ ffbuild_configure() {
4748}
4849
4950ffbuild_unconfigure () {
51+ (( $(ffbuild_ffver) >= 404 )) || return 0
5052 echo --disable-librist
5153}
Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ IMAGE="${REGISTRY}/${REPO}/${TARGET}-${VARIANT}${ADDINS_STR:+-}${ADDINS_STR}:lat
3939
4040ffbuild_ffver () {
4141 case " $ADDINS_STR " in
42+ * 4.3* )
43+ echo 403
44+ ;;
4245 * 4.4* )
4346 echo 404
4447 ;;
You can’t perform that action at this time.
0 commit comments