From b18005979322383222fc0e770c679d84f91f6532 Mon Sep 17 00:00:00 2001 From: Cekis Date: Sat, 15 Jan 2022 10:59:25 -0800 Subject: [PATCH] Create compile-src.yml --- .github/workflows/compile-src.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/compile-src.yml diff --git a/.github/workflows/compile-src.yml b/.github/workflows/compile-src.yml new file mode 100644 index 00000000..b8791337 --- /dev/null +++ b/.github/workflows/compile-src.yml @@ -0,0 +1,20 @@ +name: SWG Source - Continuous Integration for src repo + +on: + pull_request: + branches: [ master ] + + workflow_dispatch: + +jobs: + compile-src: + runs-on: ubuntu-latest + container: cekisswg/swg-vm3.01-i386:latest + steps: + - name: Run ANT Build + run: | + cd /home/swg/swg-main + git clone https://github.com/SWG-Source/src.git + cd src + ant build_src +