Skip to content

Commit b77d8ef

Browse files
committed
Test build fix
1 parent 39bd27b commit b77d8ef

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.circleci/config.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ version: 2.1
22

33
defaults: &defaults
44
docker:
5-
- image: node:20.18
5+
- image: node:22.13
66

77
deploy_defaults: &deploy_defaults
88
docker:
9-
- image: cimg/python:3.10.2
9+
- image: cimg/python:3.12.1-browsers
1010

1111
test_defaults: &test_defaults
1212
docker:
@@ -17,8 +17,9 @@ install_build_dependency: &install_build_dependency
1717
command: |
1818
apt update
1919
apt install jq -y
20-
apt install python3-pip -y
21-
pip3 install awscli --upgrade
20+
curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "awscli-bundle.zip"
21+
unzip awscli-bundle.zip
22+
sudo ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws
2223
2324
install_dependency: &install_dependency
2425
name: Installation of build and deployment dependencies.

0 commit comments

Comments
 (0)