add 32-bit Windows build script

master
Dan Bryant 2019-12-11 12:48:40 +00:00
parent 1117c3b63b
commit 75df69b67c
2 changed files with 32 additions and 1 deletions

31
.github/workflows/windows_32.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: Build for Windows 32-bit
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
container:
image: docker://justdan96/tsmuxer_build:latest
volumes:
- /workspace:/github/workspace
steps:
- uses: actions/checkout@master
name: checkout
- run: rm -f bin/.gitkeep
name: clean-bin-folder
- run: ./rebuild_mxe32_docker.sh
name: build-for-windows
- uses: actions/upload-artifact@master
with:
name: tsMuxer
path: bin
name: upload-artefact

View File

@ -1,4 +1,4 @@
name: Build for Windows
name: Build for Windows 64-bit
on:
push: