From f34bafef7046f495497d4675141b4b2971da2d2d Mon Sep 17 00:00:00 2001 From: eukara Date: Sun, 8 Oct 2023 22:25:55 -0700 Subject: [PATCH] Create linux-ci.yaml --- .github/workflows/linux-ci.yaml | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/linux-ci.yaml diff --git a/.github/workflows/linux-ci.yaml b/.github/workflows/linux-ci.yaml new file mode 100644 index 0000000..3d4e84f --- /dev/null +++ b/.github/workflows/linux-ci.yaml @@ -0,0 +1,34 @@ +name: Linux CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: deps + run: | + sudo apt update + sudo apt install \ + libglib2.0-dev \ + libxml2-dev \ + libjpeg8-dev \ + libpng-dev \ + libminizip-dev + + - name: make + run: make + + - uses: actions/upload-artifact@v3 + with: + name: vmap-bin + path: vmap