]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Match .travis.yml more closely
authorTaylor Yu <catalyst@torproject.org>
Wed, 4 Oct 2017 14:45:21 +0000 (09:45 -0500)
committerTaylor Yu <catalyst@torproject.org>
Fri, 6 Oct 2017 03:42:00 +0000 (22:42 -0500)
Adjust the GitLab CI configuration to more closely match that of
Travis CI. Fixes bug 23757.

.gitlab-ci.yml
changes/bug23757 [new file with mode: 0644]

index 969646b987c1613576550fbb2262d98e07743db9..ba981d5f144bb7d70d39905aca9db04a77fe9ba7 100644 (file)
@@ -1,13 +1,17 @@
 before_script:
-    - "apt-get update -qq"
-    - "apt-get upgrade -y"
+    - apt-get update -qq
+    - apt-get upgrade -qy
 
 build:
   script:
-    - "apt-get install -y --fix-missing git openssh-client asciidoc wget gcc g++ automake cmake make libglib2.0 libglib2.0-dev libigraph0 libigraph0-dev libevent-dev openssl libssl-dev"
-    - "sh autogen.sh && ./configure && make"
-    - "make check"
-    - "make install"
+    - apt-get install -qy --fix-missing automake build-essential
+      libevent-dev libssl-dev zlib1g-dev
+      libseccomp-dev liblzma-dev libscrypt-dev
+    - ./autogen.sh
+    - ./configure --disable-asciidoc --enable-fatal-warnings
+      --disable-silent-rules
+    - make check || (e=$?; cat test-suite.log; exit $e)
+    - make install
 
 update:
   only:
diff --git a/changes/bug23757 b/changes/bug23757
new file mode 100644 (file)
index 0000000..02507a0
--- /dev/null
@@ -0,0 +1,4 @@
+  o Minor bugfixes (testing):
+    - Adjust the GitLab CI configuration to more closely match that of Travis
+      CI. Fixes bug 23757; bugfix on 0.3.2.2-alpha.
+