diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2021-01-02 17:52:02 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2021-01-02 17:57:01 +0100 |
commit | c918bf2467372b83b8b2e1dfa514f11796315232 (patch) | |
tree | 28539c0b92992509f4d3ddd4c5d48bb93e932d13 /.github/workflows/yatr.yaml | |
parent | 0805c75a80c6aca041f99da68d6743f214a2e013 (diff) | |
download | blogc-c918bf2467372b83b8b2e1dfa514f11796315232.tar.gz blogc-c918bf2467372b83b8b2e1dfa514f11796315232.tar.bz2 blogc-c918bf2467372b83b8b2e1dfa514f11796315232.zip |
build: debian: split jobs
Diffstat (limited to '.github/workflows/yatr.yaml')
-rw-r--r-- | .github/workflows/yatr.yaml | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/.github/workflows/yatr.yaml b/.github/workflows/yatr.yaml index 74b23d2..6b1cc64 100644 --- a/.github/workflows/yatr.yaml +++ b/.github/workflows/yatr.yaml @@ -28,7 +28,19 @@ jobs: - target: dist-srpm compiler: gcc image: ubuntu-20.04 - - target: debian + - target: deb-buster-amd64 + compiler: gcc + image: ubuntu-20.04 + - target: deb-bullseye-amd64 + compiler: gcc + image: ubuntu-20.04 + - target: deb-sid-amd64 + compiler: gcc + image: ubuntu-20.04 + - target: deb-focal-amd64 + compiler: gcc + image: ubuntu-20.04 + - target: deb-groovy-amd64 compiler: gcc image: ubuntu-20.04 - target: static @@ -53,7 +65,7 @@ jobs: if [[ "x${{ matrix.image }}" = xubuntu-* ]]; then sudo gem install ronn sudo apt-get update -y - if [[ "x${{ matrix.target }}" = *check* ]] || [[ "x${{ matrix.target }}" = xvalgrind ]] || [[ "x${{ matrix.target }}" = xdebian ]]; then + if [[ "x${{ matrix.target }}" = *check* ]] || [[ "x${{ matrix.target }}" = xvalgrind ]] || [[ "x${{ matrix.target }}" = xdeb-* ]]; then sudo apt-get install -y libcmocka-dev fi if [[ "x${{ matrix.target }}" = xvalgrind ]]; then @@ -68,7 +80,7 @@ jobs: if [[ "x${{ matrix.target }}" = xwin64 ]]; then sudo apt-get install -y gcc-mingw-w64-x86-64 fi - if [[ "x${{ matrix.target }}" = xdebian ]]; then + if [[ "x${{ matrix.target }}" = xdeb-* ]]; then sudo apt-get install -y cowbuilder debhelper pbuilder reprepro fi elif [[ "x${{ matrix.image }}" = xmacos-* ]]; then |