@@ -24,17 +24,19 @@ build-macos:
24
24
except :
25
25
- schedules
26
26
tags :
27
- - catalina
27
+ - monterey
28
28
- amd64
29
29
script :
30
- - curl -sS -O https://artifacts.videolan.org/vlc/macos-x86_64/vlc-contrib-x86_64-apple-darwin19-58c8b6aba888c666612e91d1cbb012aea630c853.tar.bz2
31
- - tar xf vlc-contrib-x86_64-apple-darwin19-58c8b6aba888c666612e91d1cbb012aea630c853.tar.bz2
30
+ - CONTRIB_TARBALL=`curl -s https://artifacts.videolan.org/vlc/macos-x86_64/SHA512SUM 2>/dev/null | cut -d '/' -f 2`
31
+ - curl -sS -O https://artifacts.videolan.org/vlc/macos-x86_64/$CONTRIB_TARBALL
32
+ - tar xf "$CONTRIB_TARBALL"
32
33
- cd x86_64-apple-darwin19
33
34
- curl -sS -o ./change_prefix.sh 'https://git.videolan.org/?p=vlc.git;a=blob_plain;f=contrib/src/change_prefix.sh;hb=HEAD'
34
35
- chmod +x ./change_prefix.sh
35
36
- ./change_prefix.sh
36
37
- export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:`pwd -P`/lib/pkgconfig/"
37
38
- cd ../
39
+ - export PATH="/Users/videolanci/sandbox/bin:$PATH"
38
40
- mkdir build
39
41
- cd build
40
42
- ../bootstrap
@@ -50,8 +52,9 @@ build-win64:
50
52
- docker
51
53
- amd64
52
54
script :
53
- - wget -nv https://artifacts.videolan.org/vlc/win64/vlc-contrib-x86_64-w64-mingw32-58c8b6aba888c666612e91d1cbb012aea630c853.tar.bz2
54
- - tar xf vlc-contrib-x86_64-w64-mingw32-58c8b6aba888c666612e91d1cbb012aea630c853.tar.bz2
55
+ - CONTRIB_TARBALL=`wget --output-document - https://artifacts.videolan.org/vlc/win64/SHA512SUM 2>/dev/null | cut -d '/' -f 2`
56
+ - wget -nv https://artifacts.videolan.org/vlc/win64/$CONTRIB_TARBALL
57
+ - tar xf "$CONTRIB_TARBALL"
55
58
- cd x86_64-w64-mingw32
56
59
- wget -nv -O ./change_prefix.sh 'https://git.videolan.org/?p=vlc.git;a=blob_plain;f=contrib/src/change_prefix.sh;hb=HEAD'
57
60
- chmod +x ./change_prefix.sh
@@ -73,8 +76,9 @@ build-win32:
73
76
- docker
74
77
- amd64
75
78
script :
76
- - wget -nv https://artifacts.videolan.org/vlc/win32/vlc-contrib-i686-w64-mingw32-58c8b6aba888c666612e91d1cbb012aea630c853.tar.bz2
77
- - tar xf vlc-contrib-i686-w64-mingw32-58c8b6aba888c666612e91d1cbb012aea630c853.tar.bz2
79
+ - CONTRIB_TARBALL=`wget --output-document - https://artifacts.videolan.org/vlc/win32/SHA512SUM 2>/dev/null | cut -d '/' -f 2`
80
+ - wget -nv https://artifacts.videolan.org/vlc/win32/$CONTRIB_TARBALL
81
+ - tar xf "$CONTRIB_TARBALL"
78
82
- cd i686-w64-mingw32
79
83
- wget -nv -O ./change_prefix.sh 'https://git.videolan.org/?p=vlc.git;a=blob_plain;f=contrib/src/change_prefix.sh;hb=HEAD'
80
84
- chmod +x ./change_prefix.sh
0 commit comments