2020-08-05 17:00:52 +00:00
|
|
|
name: C/C++ CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master, ci ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
configs:
|
|
|
|
- ""
|
|
|
|
- "--with-kerberos5"
|
|
|
|
- "--with-libedit"
|
|
|
|
- "--with-pam"
|
|
|
|
- "--with-security-key-builtin"
|
|
|
|
- "--with-selinux"
|
|
|
|
- "--with-kerberos5 --with-libedit --with-pam --with-security-key-builtin --with-selinux"
|
2020-08-07 04:15:11 +00:00
|
|
|
- "--without-openssl --without-zlib"
|
2020-08-05 17:00:52 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: setup CI system
|
|
|
|
run: ./.github/setup_ci.sh ${{ matrix.configs }}
|
|
|
|
- name: autoreconf
|
|
|
|
run: autoreconf
|
|
|
|
- name: configure
|
|
|
|
run: ./configure ${{ matrix.configs }}
|
|
|
|
- name: make
|
|
|
|
run: make
|
|
|
|
- name: make tests
|
2020-08-07 05:11:42 +00:00
|
|
|
run: ./.github/run_test.sh ${{ matrix.configs }}
|
2020-08-05 17:00:52 +00:00
|
|
|
env:
|
|
|
|
TEST_SSH_UNSAFE_PERMISSIONS: 1
|