diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2020-08-09 11:02:33 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2020-08-09 11:02:33 +0200 |
commit | 0f856e8c8721537a0c945b7036351e4073dc0b04 (patch) | |
tree | 50a4ae439a243fc9fd059d47b109e2ef9138b706 /.github/workflows | |
parent | 4c228cd60890c0ef09c345c13713453c4c2dd508 (diff) | |
download | pianobar-0f856e8c8721537a0c945b7036351e4073dc0b04.tar.gz pianobar-0f856e8c8721537a0c945b7036351e4073dc0b04.tar.bz2 pianobar-0f856e8c8721537a0c945b7036351e4073dc0b04.zip |
Add GitHub Actions-based CI
We don’t really need it, but why not…
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..9b61ea6 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: build + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-20.04 + + steps: + - uses: actions/checkout@v2 + - name: deps + run: sudo apt install libao-dev libavcodec-dev libavfilter-dev libavformat-dev libavutil-dev libcurl4-gnutls-dev libgcrypt20-dev libjson-c-dev libpth-dev pkg-config build-essential + - name: make + run: make + |