Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: StackStorm/st2web
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6db0019c7507c4f6a4f84db17de11e05dd1d4f02
Choose a base ref
..
head repository: StackStorm/st2web
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 972974e05bff1e57201d37e22ab4c8946c7a8822
Choose a head ref
Showing with 236 additions and 28 deletions.
  1. +3 −2 .circleci/config.yml
  2. +233 −26 yarn.lock
5 changes: 3 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ jobs:
environment:
DEPLOY_PACKAGES: 1
DEB: trusty xenial bionic
RPM: el6 el7
RPM: el6 el7 el8
ST2_HOST: localhost
ST2_USERNAME: admin
ST2_PASSWORD: 123
@@ -134,12 +134,13 @@ jobs:
- bionic
- el6
- el7
- el8
deploy:
docker:
- image: ruby:2.6.3
environment:
ARTIFACTS: /home/circleci/artifacts
DISTROS: trusty xenial bionic el6 el7
DISTROS: trusty xenial bionic el6 el7 el8
steps:
- checkout
- attach_workspace:
Loading