Skip to content

Commit

Permalink
fix: backend-sdk-testing
Browse files Browse the repository at this point in the history
  • Loading branch information
sattvikc committed Nov 20, 2024
1 parent 1370b68 commit fa3210b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .circleci/config_continue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
- checkout
- run: apt update && apt install -y jq
- run: (cd .circleci/ && ./installJava.sh)
- run: (cd .circleci/ && ./installNode.sh 20)
- run: echo "127.0.0.1 localhost.org" >> /etc/hosts
- run: python3 -m pip install -r dev-requirements.txt
- run: (cd .circleci/ && ./doBackendSDKTests.sh << parameters.cdi-version >> << parameters.fdi-version >>)
Expand Down
6 changes: 6 additions & 0 deletions .circleci/installNode.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

export NODE_VERSION=$1

curl -fsSL https://deb.nodesource.com/setup_$NODE_VERSION.x | bash -
apt-get install -y nodejs

0 comments on commit fa3210b

Please sign in to comment.