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

Sprint 65 release to PROD #924

Merged
merged 21 commits into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
91df7c8
VOTE-2511: retry tome generating files or fail if the command exits n…
tt-gsa Jul 29, 2024
4691941
VOTE-2241 configure a minimal maintenance page template (#884)
rayestrada Jul 29, 2024
752f8cc
Merge pull request #889 from usagov/stage
rayestrada Jul 30, 2024
cee2a1c
VOTE-2507 remove content translator role (#896)
rayestrada Aug 1, 2024
7060c7b
VOTE-2511: remove robots.txt from the upkeep copy (#899)
tt-gsa Aug 1, 2024
ee7deb8
VOTE-2513 Disable translation on voter guide image field (#895)
rayestrada Aug 2, 2024
8fad157
VOTE: 2524 update favicon files (#898)
rkoch2 Aug 2, 2024
11b35f4
VOTE-2520: Increase banner z-index to hide a11y tools (#901)
mlloydbixal Aug 6, 2024
6f16ec3
VOTE-2380: Only allow 'image' as embedded option in WYSIWYG (#900)
mlloydbixal Aug 6, 2024
632a9b8
VOTE-2503 content editor role permission adjustments (#907)
rayestrada Aug 8, 2024
b052c54
VOTE-2184: add timestamps between steps of the downsync and backup sc…
tt-gsa Aug 8, 2024
c035c2b
VOTE-2497: add environment variable to command running post deploy up…
tt-gsa Aug 8, 2024
36a6232
VOTE-2530-2531: add approvals to some post deploy steps in the pipeli…
tt-gsa Aug 8, 2024
42c86f3
VOTE-2518: Exclude NV font from language selector (#904)
WilliamYKwon Aug 9, 2024
9397799
VOTE-2519: Show language sub-menu while main nav is open (#903)
SamiraMSadat Aug 9, 2024
f82b6c5
VOTE-2101 Add content version field to nodes and taxonomy edit forms …
rayestrada Aug 9, 2024
21b51b7
VOTE-2419: Update drupal modules. (#905)
daniel-crowder Aug 9, 2024
c04430b
VOTE-2517: fix favicon path file extension (#918)
mlloydbixal Aug 9, 2024
e44fd60
Vote-2495: Add/Update Cypress Tests (#911)
clmedders Aug 12, 2024
4476077
Hotfix cypress (#921)
clmedders Aug 12, 2024
7551be7
Merge pull request #916 from usagov/dev
rayestrada Aug 13, 2024
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
33 changes: 29 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ jobs:
cf install-plugin -f https://github.com/cloud-gov/cf-service-connect/releases/download/v1.1.3/cf-service-connect_linux_amd64
- run:
name: "Run downsync"
no_output_timeout: 30m
command: |
source ./scripts/pipeline/exports.sh "${BACKUP_ENV}"
source ./scripts/pipeline/cloud-gov-login.sh
Expand Down Expand Up @@ -212,6 +213,7 @@ jobs:
cf install-plugin -f https://github.com/cloud-gov/cf-service-connect/releases/download/v1.1.3/cf-service-connect_linux_amd64
- run:
name: "Run backup"
no_output_timeout: 30m
command: |
export BACKUP_ENV=${CIRCLE_BRANCH}
source ./scripts/pipeline/exports.sh "${CIRCLE_BRANCH}"
Expand All @@ -220,6 +222,7 @@ jobs:
./scripts/pipeline/scheduled_backup.sh "${prod_cf_space}"
- run:
name: "Run backup"
no_output_timeout: 30m
command: |
echo "I am the result of Run Backup failed job"
export BACKUP_ENV=${CIRCLE_BRANCH}
Expand Down Expand Up @@ -315,22 +318,40 @@ workflows:
- stage
requires:
- deploy
- post-deploy-upkeep:
- post-deploy-upkeep-approval:
filters:
branches:
only:
- test
- dev
- stage
type: approval
requires:
- post-deploy
- post-deploy-upkeep:
filters:
branches:
only:
- test
- dev
- stage
requires:
- post-deploy-upkeep-approval
- cypress-approval:
filters:
branches:
only:
- stage
type: approval
requires:
- post-deploy-upkeep
- cypress:
filters:
branches:
only:
- stage
requires:
- post-deploy-upkeep
- cypress-approval
deploy-prod-workflow:
when:
and:
Expand All @@ -348,9 +369,13 @@ workflows:
- post-deploy:
requires:
- deploy
- post-deploy-upkeep:
- post-deploy-upkeep-approval:
type: approval
requires:
- post-deploy
- post-deploy-upkeep:
requires:
- post-deploy-upkeep-approval
upkeep-workflow:
when:
and:
Expand Down Expand Up @@ -390,4 +415,4 @@ workflows:
- equal: [ test, << pipeline.parameters.restore >> ]
jobs:
- downsync

Loading