diff options
author | Mike Gerwitz <mike.gerwitz@ryansg.com> | 2019-11-18 14:09:12 -0500 |
---|---|---|
committer | Mike Gerwitz <mike.gerwitz@ryansg.com> | 2019-11-18 14:15:07 -0500 |
commit | d20e2bc78a7418e35460c2ec65c99294292b20d7 (patch) | |
tree | 3e863c0957f4457648669a21f781d6f6d0c80a48 /.gitlab-ci.yml | |
parent | a2478938b81ba4a69507c13432b74a3637c442e2 (diff) | |
download | tame-d20e2bc78a7418e35460c2ec65c99294292b20d7.tar.gz tame-d20e2bc78a7418e35460c2ec65c99294292b20d7.tar.bz2 tame-d20e2bc78a7418e35460c2ec65c99294292b20d7.zip |
tamer: Integrate into normal build process
Rust is now expected to be installed in the base image.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5914f6a..c4f53e6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,23 +12,12 @@ build: - export SAXON_CP=/usr/share/ant/lib/saxon9/saxon9he.jar - autoreconf -fvi - ./configure + - ( cd tamer && ./bootstrap && ./configure ) - ( cd progtest && npm install && ./autogen.sh && ./configure ) - make all check info pdf html artifacts: paths: - doc/ - expire_in: 30 min - -build-rust: - stage: build - image: rust:1.39 - script: - - cd tamer - - ./bootstrap - - ./configure - - make check - artifacts: - paths: - tamer/target expire_in: 30 min |