Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bump deps and update circle ci config #537

Merged
merged 1 commit into from
May 9, 2024
Merged
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
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
Loading