diff options
author | Masanori Kakura <kakurasan@gmail.com> | 2020-10-05 21:24:24 +0900 |
---|---|---|
committer | Jan <sentrycraft123@gmail.com> | 2020-10-05 17:12:38 +0200 |
commit | a65cd5add177b4a883b308dc3b9504e93abeeca7 (patch) | |
tree | a3a476409a303464166c756af233171614cbf9d2 /.github/workflows | |
parent | d07122673c9c66b41cf311ff4c9d1abed49fc669 (diff) | |
download | polecat-a65cd5add177b4a883b308dc3b9504e93abeeca7.tar.gz polecat-a65cd5add177b4a883b308dc3b9504e93abeeca7.zip |
Use Meson build system
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d71f9a..5e9680e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,9 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install dependencies - run: sudo apt-get install libcurl4-openssl-dev libjson-c-dev libarchive-dev + run: sudo apt-get install libcurl4-openssl-dev libjson-c-dev libarchive-dev meson - name: Build - run: make - + run: | + meson _build + ninja -vC _build + ninja -vC _build dist |