diff options
author | Daniel Friesel <derf@finalrewind.org> | 2020-04-06 11:12:40 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2020-04-06 11:12:57 +0200 |
commit | af490e4dcea79ec4d8e42234462ec9cce6c017a9 (patch) | |
tree | 0d0662469a20f2fd38fa6236d8361fbb75c508b7 /.github/workflows | |
parent | b7f13619d3a6a4fbd62dfa6da150e8f0bf571b7c (diff) |
Switch from Travis CI to GitHub actions
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/c.yml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/.github/workflows/c.yml b/.github/workflows/c.yml new file mode 100644 index 0000000..2be7fd6 --- /dev/null +++ b/.github/workflows/c.yml @@ -0,0 +1,40 @@ +name: linux + +on: + push: + branches: + - '*' + pull_request: + branches: + - '*' + +jobs: + c: + + runs-on: ubuntu-latest + + strategy: + matrix: + curl: [0, 1] + exif: [0, 1] + inotify: [0, 1] + verscmp: [0, 1] + xinerama: [0, 1] + + steps: + - uses: actions/checkout@v2 + - name: Install Dependencies + run: sudo apt install build-essential libx11-dev libxt-dev libimlib2-dev libtest-command-perl libtest-simple-perl + - name: Install libcurl + if: matrix.curl + run: sudo apt install libcurl4-openssl-dev + - name: Install libexif + if: matrix.exif + run: sudo apt install libexif-dev + - name: Install Xinerama + if: matrix.xinerama + run: sudo apt install libxinerama-dev + - name: Build + run: make curl=${{ matrix.curl }} exif=${{ matrix.exif }} inotify=${{ matrix.inotify }} verscmp=${{ matrix.verscmp }} xinerama=${{ matrix.xinerama }} + - name: run Tests + run: make test |