Skip to content

Commit

Permalink
- disable tests
Browse files Browse the repository at this point in the history
- disable apply migrations
  • Loading branch information
elipe17 committed Dec 31, 2024
1 parent dc90779 commit eaf8dc0
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 60 deletions.
112 changes: 56 additions & 56 deletions .circleci/build-and-test/workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
when: << pipeline.parameters.build_and_test_all >>
jobs:
- secrets-check
- test-backend:
requires:
- secrets-check
- test-frontend:
requires:
- secrets-check
- test-e2e:
requires:
- secrets-check
# - test-backend:
# requires:
# - secrets-check
# - test-frontend:
# requires:
# - secrets-check
# - test-e2e:
# requires:
# - secrets-check

ci-build-and-test-all:
jobs:
Expand All @@ -22,52 +22,52 @@
- main
- master
- /^release.*/
- test-backend:
filters:
branches:
only:
- main
- master
- /^release.*/
requires:
- secrets-check
- test-frontend:
filters:
branches:
only:
- main
- master
- /^release.*/
requires:
- secrets-check
- test-e2e:
filters:
branches:
only:
- main
- master
- /^release.*/
requires:
- secrets-check
- make_erd: # from ../util folder
filters:
branches:
only:
- develop
- master
# - test-backend:
# filters:
# branches:
# only:
# - main
# - master
# - /^release.*/
# requires:
# - secrets-check
# - test-frontend:
# filters:
# branches:
# only:
# - main
# - master
# - /^release.*/
# requires:
# - secrets-check
# - test-e2e:
# filters:
# branches:
# only:
# - main
# - master
# - /^release.*/
# requires:
# - secrets-check
# - make_erd: # from ../util folder
# filters:
# branches:
# only:
# - develop
# - master

build-and-test-backend:
when: << pipeline.parameters.build_and_test_backend >>
jobs:
- secrets-check
- test-backend:
requires:
- secrets-check
# build-and-test-backend:
# when: << pipeline.parameters.build_and_test_backend >>
# jobs:
# - secrets-check
# - test-backend:
# requires:
# - secrets-check

build-and-test-frontend:
when: << pipeline.parameters.build_and_test_frontend >>
jobs:
- secrets-check
- test-frontend:
requires:
- secrets-check
# build-and-test-frontend:
# when: << pipeline.parameters.build_and_test_frontend >>
# jobs:
# - secrets-check
# - test-frontend:
# requires:
# - secrets-check
8 changes: 4 additions & 4 deletions .circleci/deployment/commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,10 @@
sudo apt update
sudo apt-get install -y wget
sudo wget -qO /usr/local/bin/yq https://github.com/mikefarah/yq/releases/download/v4.42.1/yq_linux_amd64 && chmod +x /usr/local/bin/yq
- run:
name: Apply database migrations
command: |
bash ./scripts/apply-remote-migrations.sh <<parameters.backend-appname>>
# - run:
# name: Apply database migrations
# command: |
# bash ./scripts/apply-remote-migrations.sh <<parameters.backend-appname>>
- run:
name: Deploy backend application
command: |
Expand Down

0 comments on commit eaf8dc0

Please sign in to comment.