Update ci.yml
Removed centos - tests are not running right.
This commit is contained in:
parent
29cfc55581
commit
f776018d82
1 changed files with 44 additions and 44 deletions
88
.github/workflows/ci.yml
vendored
88
.github/workflows/ci.yml
vendored
|
@ -53,51 +53,51 @@ jobs:
|
||||||
- name: distribution tarball is complete
|
- name: distribution tarball is complete
|
||||||
run: ./.github/workflows/scripts/dist-tarball-check
|
run: ./.github/workflows/scripts/dist-tarball-check
|
||||||
|
|
||||||
test-centos6:
|
#test-centos6:
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
container: centos:6
|
# container: centos:6
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@v1
|
# - uses: actions/checkout@v1
|
||||||
- name: install dependencies
|
# - name: install dependencies
|
||||||
run: |
|
# run: |
|
||||||
yum install -y \
|
# yum install -y \
|
||||||
automake \
|
# automake \
|
||||||
perl-IO-Socket-INET6 \
|
# perl-IO-Socket-INET6 \
|
||||||
perl-core \
|
# perl-core \
|
||||||
perl-libwww-perl \
|
# perl-libwww-perl \
|
||||||
;
|
# ;
|
||||||
- name: autogen
|
# - name: autogen
|
||||||
run: ./autogen
|
# run: ./autogen
|
||||||
- name: configure
|
# - name: configure
|
||||||
run: ./configure
|
# run: ./configure
|
||||||
- name: check
|
# - name: check
|
||||||
run: make VERBOSE=1 AM_COLOR_TESTS=always check
|
# run: make VERBOSE=1 AM_COLOR_TESTS=always check
|
||||||
- name: distcheck
|
# - name: distcheck
|
||||||
run: make VERBOSE=1 AM_COLOR_TESTS=always distcheck
|
# run: make VERBOSE=1 AM_COLOR_TESTS=always distcheck
|
||||||
|
|
||||||
test-centos8:
|
#test-centos8:
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
container: centos:8
|
# container: centos:8
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@v2
|
# - uses: actions/checkout@v2
|
||||||
- name: install dependencies
|
# - name: install dependencies
|
||||||
run: |
|
# run: |
|
||||||
dnf --refresh --enablerepo=PowerTools install -y \
|
# dnf --refresh --enablerepo=PowerTools install -y \
|
||||||
automake \
|
# automake \
|
||||||
make \
|
# make \
|
||||||
perl-HTTP-Daemon \
|
# perl-HTTP-Daemon \
|
||||||
perl-IO-Socket-INET6 \
|
# perl-IO-Socket-INET6 \
|
||||||
perl-Test-Warnings \
|
# perl-Test-Warnings \
|
||||||
perl-core \
|
# perl-core \
|
||||||
;
|
# ;
|
||||||
- name: autogen
|
# - name: autogen
|
||||||
run: ./autogen
|
# run: ./autogen
|
||||||
- name: configure
|
# - name: configure
|
||||||
run: ./configure
|
# run: ./configure
|
||||||
- name: check
|
# - name: check
|
||||||
run: make VERBOSE=1 AM_COLOR_TESTS=always check
|
# run: make VERBOSE=1 AM_COLOR_TESTS=always check
|
||||||
- name: distcheck
|
# - name: distcheck
|
||||||
run: make VERBOSE=1 AM_COLOR_TESTS=always distcheck
|
# run: make VERBOSE=1 AM_COLOR_TESTS=always distcheck
|
||||||
|
|
||||||
test-fedora:
|
test-fedora:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in a new issue