Skip to content

Commit

Permalink
Merge pull request #537 from open-rpc/fix/bump-ofbumps
Browse files Browse the repository at this point in the history
fix: bump deps and update circle ci config
  • Loading branch information
BelfordZ authored May 9, 2024
2 parents 3184418 + 6152cd6 commit 54439ac
Show file tree
Hide file tree
Showing 4 changed files with 2,176 additions and 3,081 deletions.
41 changes: 11 additions & 30 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ aliases:

defaults: &defaults
working_directory: ~/mock-server
docker:
- image: cimg/node:20.12.1

jobs:
test:
<<: *defaults
docker:
- image: circleci/node:14.17.5
steps:
- checkout
- restore_cache: *restore-deps-cache
Expand All @@ -41,8 +41,6 @@ jobs:

build:
<<: *defaults
docker:
- image: circleci/node:14.17.5
steps:
- checkout
- restore_cache: *restore-deps-cache
Expand All @@ -52,8 +50,6 @@ jobs:

release:
<<: *defaults
docker:
- image: circleci/node:14.17.5
steps:
- checkout
- restore_cache: *restore-deps-cache
Expand All @@ -67,17 +63,12 @@ jobs:
ensure_base_stacks:
<<: *defaults
docker:
- image: circleci/python:3.7-stretch
- image: cimg/python:3.11.1-browsers
steps:
- checkout
- run:
name: Installing deployment dependencies
working_directory: /
command: |
sudo apt-get -y -qq update
sudo apt-get install python-pip python-dev build-essential
sudo pip install --upgrade setuptools
sudo pip install awscli --upgrade
name: Install awscli
command: pip install awscli
- run:
name: Ensure Base
command: ./cfn/init-base.sh
Expand All @@ -86,17 +77,12 @@ jobs:
ensure_production_stacks:
<<: *defaults
docker:
- image: circleci/python:3.7-stretch
- image: cimg/python:3.11.1-browsers
steps:
- checkout
- run:
name: Installing deployment dependencies
working_directory: /
command: |
sudo apt-get -y -qq update
sudo apt-get install python-pip python-dev build-essential
sudo pip install --upgrade setuptools
sudo pip install awscli --upgrade
name: Install awscli
command: pip install awscli
- run:
name: Ensure Production
command: ./cfn/init-production.sh
Expand All @@ -105,17 +91,12 @@ jobs:
release_production:
<<: *defaults
docker:
- image: circleci/python:3.7-stretch
- image: cimg/python:3.11.1-browsers
steps:
- checkout
- run:
name: Installing deployment dependencies
working_directory: /
command: |
sudo apt-get -y -qq update
sudo apt-get install python-pip python-dev build-essential
sudo pip install --upgrade setuptools
sudo pip install awsebcli --upgrade
name: Install awscli
command: pip install awscli
- run:
name: Deploying Production
command: eb deploy open-rpc-mock-server-production
Expand Down
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.17.0
20.12.1
Loading

0 comments on commit 54439ac

Please sign in to comment.