2019-11-16 13:32:43 +00:00
|
|
|
name: Build for Linux
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2019-11-16 15:46:27 +00:00
|
|
|
container:
|
|
|
|
image: docker://justdan96/tsmuxer_build:latest
|
|
|
|
volumes:
|
|
|
|
- /workspace:/github/workspace
|
|
|
|
|
2019-11-16 13:32:43 +00:00
|
|
|
steps:
|
2019-11-16 15:46:27 +00:00
|
|
|
- uses: actions/checkout@master
|
2019-11-16 13:36:45 +00:00
|
|
|
name: checkout
|
2019-11-16 13:32:43 +00:00
|
|
|
- run: ./rebuild_linux_docker.sh
|
2019-11-16 13:36:45 +00:00
|
|
|
name: build-for-linux
|