Add Windows external tools
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
4f9136abdb
commit
3c7d83b5ef
|
@ -15,10 +15,27 @@ steps:
|
||||||
- go build .
|
- go build .
|
||||||
- CGO_ENABLED=0 GOOS=windows go build -a -installsuffix cgo -o dlserver.exe .
|
- CGO_ENABLED=0 GOOS=windows go build -a -installsuffix cgo -o dlserver.exe .
|
||||||
|
|
||||||
|
- name: get_win_ffmpeg
|
||||||
|
image: busybox
|
||||||
|
commands:
|
||||||
|
- mkdir tmp
|
||||||
|
- cd tmp
|
||||||
|
- wget http://www.gyan.dev/ffmpeg/builds/packages/ffmpeg-4.3.1-essentials_build.zip
|
||||||
|
- unzip ffmpeg-4.3.1-essentials_build.zip
|
||||||
|
|
||||||
|
- name: get_win_ytdl
|
||||||
|
image: busybox
|
||||||
|
commands:
|
||||||
|
- mkdir tmp
|
||||||
|
- cd tmp
|
||||||
|
- wget https://github.com/ytdl-org/youtube-dl/releases/download/2020.09.14/youtube-dl.exe
|
||||||
|
|
||||||
- name: build_godot_windows
|
- name: build_godot_windows
|
||||||
image: barichello/godot-ci:3.2.3
|
image: barichello/godot-ci:3.2.3
|
||||||
commands:
|
commands:
|
||||||
- cp dlserver/dlserver.exe godot/
|
- cp dlserver/dlserver.exe godot/
|
||||||
|
- cp tmp/ffmpeg.exe godot/
|
||||||
|
- cp tmp/youtube-dl.exe godot/
|
||||||
- cd godot/
|
- cd godot/
|
||||||
- mkdir -v -p build/windows
|
- mkdir -v -p build/windows
|
||||||
- godot -v --export "win64" build/windows/asingcrow.exe
|
- godot -v --export "win64" build/windows/asingcrow.exe
|
||||||
|
|
Loading…
Reference in New Issue