From: Michael Schroeder Date: Mon, 7 Mar 2022 13:41:51 +0000 (+0100) Subject: Add github CI X-Git-Tag: 0.7.22~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0020b15ccb6ecfe615fc560e37c7734e82483661;p=thirdparty%2Flibsolv.git Add github CI --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..16975c0b --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,29 @@ +--- +name: CI + +on: + push: + branches: + - master + - 0.6.x + pull_request: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Setup + run: | + sudo apt-get install cmake + - name: Build + run: | + mkdir build + cd build + cmake -DDEBIAN=1 -DMULTI_SEMANTICS=1 .. + make + - name: Test + run: | + make test