mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-22 04:39:17 +01:00
Add github workflow for building non-master and non-pr
This commit is contained in:
parent
577fc3bbc8
commit
898a05b32c
16
.github/workflows/ci_non_master.yml
vendored
Normal file
16
.github/workflows/ci_non_master.yml
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
name: Build binary
|
||||
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build-binary:
|
||||
runs-on: ubuntu-18.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: build binary
|
||||
run: |
|
||||
docker build . -t builder
|
||||
docker run --rm -v ${PWD}:/project builder make
|
Loading…
Reference in New Issue
Block a user