diff options
| author | mo khan <mo.khan@gmail.com> | 2020-06-19 21:24:57 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-06-19 21:24:57 -0600 |
| commit | 67499778f503b0ec10fe2ccaab4bcb7f1cd053d5 (patch) | |
| tree | 9b58301cdeca86945d02b418b91058804107be29 /.gitlab-ci.yml | |
| parent | 5dfaf8f34f0d967ee443e40daeb4f7ed043993d3 (diff) | |
Combine rubies in single software definition
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 92ca96c..fb8b4c3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -31,9 +31,21 @@ build-docker-image: - docker build -t $TMP_IMAGE . - docker push $TMP_IMAGE -ruby-deb: +.ruby-deb: script: - bundle exec omnibus build asdf-ruby + variables: + RUBY_VERSION: '2.7.1' + +ruby-2-7-1-deb: + extends: .ruby-deb + variables: + RUBY_VERSION: '2.7.1' + +ruby-2-7-0-deb: + extends: .ruby-deb + variables: + RUBY_VERSION: '2.7.0' mono-deb: script: |
