Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
build:
machine: true
working_directory: ~/StackStorm/st2chatops
parallelism: 5
parallelism: 6
shell: /bin/bash --login
environment:
DISTROS: trusty xenial bionic el6 el7
DISTROS: trusty xenial bionic el6 el7 el8
ST2_PACKAGES_REPO: https://github.com/StackStorm/st2-packages
ST2_TEST_ENVIRONMENT: https://github.com/StackStorm/st2-docker
DEPLOY_PACKAGES: 1
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
- image: circleci/ruby:2.4
working_directory: ~/packages
environment:
DISTROS: "trusty xenial bionic el6 el7"
DISTROS: "trusty xenial bionic el6 el7 el8"
steps:
- attach_workspace:
at: /home/circleci
Expand Down
12 changes: 12 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ bionic:
file: docker-compose.override.yml
service: suite

el8:
build: ./packagingenv/centos8
extends:
file: docker-compose.override.yml
service: suite

el7:
build: ./packagingenv/centos7
extends:
Expand Down Expand Up @@ -48,6 +54,12 @@ bionic-test:
file: docker-compose.override.yml
service: suite-test

el8-test:
build: ./testingenv/centos8
extends:
file: docker-compose.override.yml
service: suite-test

el7-test:
build: ./testingenv/centos7
extends:
Expand Down
Loading