Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
johangant committed Sep 2, 2020
2 parents 5be36d8 + 8955a4a commit 2daa709
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 23 deletions.
28 changes: 25 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,27 @@ jobs:
root: ./
paths:
- ./
build_edge_branch:
docker:
- image: circleci/php:7.3.14-apache-browsers
steps:
- checkout_code
- install_php_os_extensions
- run:
name: Switch to edge build branch
command: |
cd ~/project
git checkout -b $EDGE_BUILD_BRANCH
- run:
name: Install dev versions of dof-dss packages with composer.
command: |
composer require dof-dss/nidirect-site-modules:dev-development dof-dss/nidirect-migrations:dev-development \
dof-dss/nidirect-d8-test-install-profile:dev-development dof-dss/nicsdru_origins_theme:dev-development \
dof-dss/nicsdru_origins_modules:dev-development dof-dss/nicsdru_nidirect_theme:dev-development
- persist_to_workspace:
root: ./
paths:
- ./

# Test for coding standards and deprecated code.
static_analysis:
Expand Down Expand Up @@ -346,9 +367,10 @@ workflows:
only:
- development
jobs:
- build
- sync_data
- build_edge_branch
- sync_data:
requires:
- build_edge_branch
- functional_tests:
requires:
- build
- sync_data
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"dof-dss/nicsdru_origins_theme": "^0.3.1",
"dof-dss/nidirect-d8-test-install-profile": "^0.2.2",
"dof-dss/nidirect-migrations": "^0.10.0",
"dof-dss/nidirect-site-modules": "^0.10.2",
"dof-dss/nidirect-site-modules": "^0.10.3",
"drupal/address": "^1.7",
"drupal/admin_toolbar": "^2.0",
"drupal/adminimal_theme": "^1.5",
Expand Down Expand Up @@ -172,6 +172,9 @@
},
"drupal/paragraphs": {
"Integrity constraint violation: 1048 Column 'langcode' cannot be null": "https://www.drupal.org/files/issues/2020-06-25/paragraphs-2901390-51.patch"
},
"drupal/shs": {
"SHS select is empty on views": "https://www.drupal.org/files/issues/2018-12-10/shs-blank-select-fix-3019378-3.patch"
}
},
"composer-exit-on-patch-failure": true,
Expand Down
25 changes: 14 additions & 11 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions config/sync/user.role.anonymous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ permissions:
- 'view files'
- 'view media'
- 'view published gp entities'
- 'view terms in site_themes'
11 changes: 7 additions & 4 deletions config/sync/views.view.contacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ display:
default_group_multiple: { }
group_items: { }
parse_mode: phrase
min_length: 3
min_length: 2
fields:
- title_fulltext
plugin_id: search_api_fulltext
Expand Down Expand Up @@ -253,7 +253,6 @@ display:
relationships: { }
arguments: { }
display_extenders: { }
title: Contacts
cache_metadata:
max-age: -1
contexts:
Expand All @@ -263,7 +262,9 @@ display:
- url.query_args
- 'url.query_args:sort_by'
- 'url.query_args:sort_order'
tags: { }
- 'user.node_grants:view'
tags:
- 'config:search_api.index.contacts'
contact_search:
display_plugin: embed
id: contact_search
Expand All @@ -281,4 +282,6 @@ display:
- url.query_args
- 'url.query_args:sort_by'
- 'url.query_args:sort_order'
tags: { }
- 'user.node_grants:view'
tags:
- 'config:search_api.index.contacts'
10 changes: 6 additions & 4 deletions config/sync/views.view.site_themes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -493,17 +493,19 @@ display:
entity_type: flagging
plugin_id: flag_filter
sorts:
field_taxonomy_rank_value:
id: field_taxonomy_rank_value
table: taxonomy_term__field_taxonomy_rank
field: field_taxonomy_rank_value
weight:
id: weight
table: taxonomy_term_field_data
field: weight
relationship: none
group_type: group
admin_label: ''
order: ASC
exposed: false
expose:
label: ''
entity_type: taxonomy_term
entity_field: weight
plugin_id: standard
name:
id: name
Expand Down

0 comments on commit 2daa709

Please sign in to comment.