Skip to content

Commit

Permalink
fix ubuntu-latest and ubuntu:20.04 in GitLab CI
Browse files Browse the repository at this point in the history
Was waiting for input to configure tzdata.
  • Loading branch information
ddennedy committed Apr 25, 2020
1 parent b359e15 commit 0d96fad
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
- DEBIAN_FRONTEND=noninteractive 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
- DEBIAN_FRONTEND=noninteractive 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 0d96fad

Please sign in to comment.