From e8148e4e11c7ec47ef93e53cf9929f138e27cd2f Mon Sep 17 00:00:00 2001 From: AKuHAK Date: Sun, 17 Jan 2021 21:36:29 +0200 Subject: [PATCH] Create compilation.yml --- .github/workflows/compilation.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/compilation.yml diff --git a/.github/workflows/compilation.yml b/.github/workflows/compilation.yml new file mode 100644 index 00000000..e405b0c0 --- /dev/null +++ b/.github/workflows/compilation.yml @@ -0,0 +1,22 @@ +name: CI-compile + +on: + push: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + container: ps2dev/ps2dev:v1.0 + # instead of "ps2dev/ps2dev:latest" you can use different tags, for example for old projects you can use "ps2dev/ps2dev:v1.0" + steps: + - name: Install dependencies + run: | + apk add build-base git zip + - uses: actions/checkout@v2 + - run: | + git fetch --prune --unshallow + - name: Compile project + run: | + make all + # commands for compiling your project