1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2026-08-15 11:00:07 -04:00

Main: fix CI

This commit is contained in:
Alex Kotov 2022-06-14 16:14:08 +03:00
parent 7da885e370
commit ee393292d6
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08

View file

@ -33,18 +33,18 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
pkg: packages:
- main: 'all' - without: 'all'
- main: 'file' - without: 'io'
- main: 'ntoa' - without: 'ntoa'
other: '--without-printf --without-units' dependencies: '--without-printf --without-units'
- main: 'printf' - without: 'printf'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: autogen - name: autogen
run: ./autogen.sh run: ./autogen.sh
- name: configure - name: configure
run: ./configure --enable-debug --enable-tests --enable-tests-python --without-${{matrix.pkg.main}} ${{matrix.pkg.other}} run: ./configure --enable-debug --enable-tests --enable-tests-python --without-${{matrix.packages.without}} ${{matrix.packages.dependencies}}
- name: make - name: make
run: make run: make
- name: check - name: check