Skip to content

Commit

Permalink
disable ubuntu-latest and ubuntu-lts-3 in GitLab CI
Browse files Browse the repository at this point in the history
These are hanging waiting for input to configure tzdata even though -y
was passed to apt.
  • Loading branch information
ddennedy committed Apr 25, 2020
1 parent 91e075a commit b359e15
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
ubuntu-latest:
image: ubuntu:latest
script:
- sed -i '/^#\sdeb-src /s/^#//' "/etc/apt/sources.list"
- DEBIAN_FRONTEND=noninteractive apt-get -qq update
- apt-get -yqq build-dep mlt
- ./configure --enable-gpl --enable-gpl3 && make && make install
#ubuntu-latest:
# image: ubuntu:latest
# script:
# - sed -i '/^#\sdeb-src /s/^#//' "/etc/apt/sources.list"
# - DEBIAN_FRONTEND=noninteractive apt-get -qq update
# - apt-get -yqq build-dep mlt
# - ./configure --enable-gpl --enable-gpl3 && make && make install
# there's no `check` or `test` `make` target

ubuntu-lts-3:
image: ubuntu:20.04
script:
- sed -i '/^#\sdeb-src /s/^#//' "/etc/apt/sources.list"
- DEBIAN_FRONTEND=noninteractive apt-get -qq update
- apt-get -yqq build-dep mlt
- ./configure --enable-gpl --enable-gpl3 && make && make install
#ubuntu-lts-3:
# image: ubuntu:20.04
# script:
# - sed -i '/^#\sdeb-src /s/^#//' "/etc/apt/sources.list"
# - DEBIAN_FRONTEND=noninteractive apt-get -qq update
# - apt-get -yqq build-dep mlt
# - ./configure --enable-gpl --enable-gpl3 && make && make install
# there's no `check` or `test` `make` target

ubuntu-lts-2:
Expand Down

0 comments on commit b359e15

Please sign in to comment.