Skip to content

Commit e409aaa

Browse files
authored
Merge pull request #1008 from guzzijones/circle
fix lerna version
2 parents 73e75f6 + 7e7a222 commit e409aaa

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

.circleci/config.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@
77
version: 2
88
jobs:
99
build:
10-
machine: true
10+
machine:
11+
# pin image to older version as "ubuntu-2204:2023.10.1" breaks on "nvm" step
12+
image: ubuntu-2204:2023.04.2
1113
environment:
1214
DEPLOY_PACKAGES: 1
1315
DEB: bionic focal
1416
RPM: el7 el8
15-
ST2_VERSION: "3.6dev"
17+
ST2_VERSION: "3.9dev"
1618
ST2_HOST: localhost
1719
ST2_PROTOCOL: http
1820
ST2_USERNAME: st2admin
@@ -58,7 +60,7 @@ jobs:
5860
sudo apt-get install rpm jq devscripts debhelper
5961
gem install package_cloud
6062
nvm use 14.20.1
61-
npm install --global lerna yarn
63+
npm install --global lerna@6.0.0 yarn
6264
- run:
6365
name: Install package dependencies
6466
command: |

CHANGELOG.rst

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ Changelog
44
in development
55
--------------
66

7+
Fixed
8+
~~~~~
9+
* Fixed CircleCI tests by pinning [email protected]. #1008
10+
11+
Contributed by @guzzijones
12+
13+
14+
st2 v3.8.0
15+
------
716

817
Added
918
~~~~~
@@ -30,7 +39,6 @@ Changed
3039

3140
Reported by @cded from @Bitovi
3241

33-
3442
Fixed
3543
~~~~~
3644
* Fixed CircleCI tests
@@ -44,7 +52,3 @@ Fixed
4452
* Escaped text in notifications. #990
4553

4654
Contributed by @cded from @Bitovi
47-
48-
49-
v2.4.3
50-
------

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ all: build
1212
# yarn now included in later node images
1313
npm-install:
1414
echo "npm install"
15-
npm install -g lerna
15+
npm install -g lerna@6.0.0
1616

1717
lerna:
1818
echo "lerna"

0 commit comments

Comments
 (0)