Test Guile 2.0 and 2.2 during CI.

* build-aux/gitlab-ci.yml (before-script): Use a variable for the
Guile package version.
(test): Rename this...
(test-guile-2.2): ...to this and set the Guile version variable.
(test-guile-2.0): New job.
This commit is contained in:
Timothy Sample 2019-06-01 11:32:34 -04:00
parent d465be7275
commit da54a7ac9f
1 changed files with 10 additions and 2 deletions

View File

@ -22,13 +22,21 @@ before_script:
- apt-get update -qq && apt-get install -y -qq - apt-get update -qq && apt-get install -y -qq
autoconf autoconf
automake automake
guile-2.2-dev guile-${TEST_GUILE_VERSION}-dev
make make
pkg-config pkg-config
texinfo texinfo
- which guile - which guile
- guile --version - guile --version
test: test-guile-2.0:
variables:
TEST_GUILE_VERSION: "2.0"
script:
- ./bootstrap && ./configure && make && make check
test-guile-2.2:
variables:
TEST_GUILE_VERSION: "2.2"
script: script:
- ./bootstrap && ./configure && make && make check - ./bootstrap && ./configure && make && make check