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

Upgrade circleci machine version #195

Merged
merged 28 commits into from
Mar 5, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
wip
  • Loading branch information
jaesivsm committed Mar 5, 2022
commit 363d730219a5fc50fa2b3dc9071b20cbc243ca6b
18 changes: 11 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,22 +103,26 @@ jobs:
mv example_conf/jarr.circleci.json example_conf/jarr.json
- run:
name: Starting test environment
command: |
make start-env RUN= COMPOSE_FILE=Dockerfiles/circleci-env.yml
sleep 2
make db-bootstrap-user RUN= COMPOSE_FILE=Dockerfiles/circleci-env.yml
make db-bootstrap-tables RUN= COMPOSE_FILE=Dockerfiles/circleci-env.yml
- run:
name: Bootstraping database
command: >-
make setup-testing DB_NAME=jarr
RUN=
COMPOSE_FILE=Dockerfiles/circleci-env.yml
JARR_CONFIG=example_conf/jarr.json
CONF_FILE=example_conf/jarr.json
docker-compose --file Dockerfiles/circleci-env.yml
exec server bash -c "make init-env"
- run:
name: Installing testing dependencies
command: >-
docker-compose --file Dockerfiles/circleci-env.yml
exec server bash -c "make install"
exec server bash -c "make install-dev"
- run:
name: Running tests
command: >-
docker-compose --file Dockerfiles/circleci-env.yml
exec server bash -c "make test JARR_CONFIG=example_conf"
exec server bash -c "make test JARR_CONFIG=example_conf/jarr.json"
- run:
name: Uplaoding coverage to codacy
command: >-
Expand Down