From 004e28cdce1378bb111b719b7d0fcb5a428240b6 Mon Sep 17 00:00:00 2001 From: Ash Logan Date: Wed, 31 Aug 2022 23:03:40 +1000 Subject: [PATCH] ci: Add CI --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..adfbbeb --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,18 @@ +name: Inkay-CI + +on: push + +jobs: + build-inkay: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v2 + - name: build toolchain container + run: docker build . -t builder + - uses: ammaraskar/gcc-problem-matcher@master + - name: build Inkay + run: docker run --rm -v ${PWD}:/app -w /app builder + - uses: actions/upload-artifact@master + with: + name: inkay + path: "*.wps"