Skip to content

Commit

Permalink
NGSTACK-805: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
pspanja committed Nov 7, 2023
1 parent 17a36bc commit ad3b4dc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2,617 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,29 +89,25 @@ jobs:
engine: 'solr'
config: 'phpunit-integration-solr.xml'
solr_version: '8.11.2'
solr_config: 'vendor/ibexa/solr/src/lib/Resources/config/solr/schema.xml vendor/ibexa/solr/src/lib/Resources/config/solr/language-fieldtypes.xml tests/lib/Resources/config/search/solr/8.11/solrconfig.xml tests/lib/Resources/config/search/solr/custom-fields-types.xml'
solr_cores: 'collection1'
core_setup: 'single'
- php: '8.1'
coverage: 'integration'
engine: 'solr'
config: 'phpunit-integration-solr.xml'
solr_version: '8.11.2'
solr_config: 'vendor/ibexa/solr/src/lib/Resources/config/solr/schema.xml vendor/ibexa/solr/src/lib/Resources/config/solr/language-fieldtypes.xml tests/lib/Resources/config/search/solr/8.11/solrconfig.xml tests/lib/Resources/config/search/solr/custom-fields-types.xml'
core_setup: 'dedicated'
- php: '8.1'
coverage: 'integration'
engine: 'solr'
config: 'phpunit-integration-solr.xml'
solr_version: '8.11.2'
solr_config: 'vendor/ibexa/solr/src/lib/Resources/config/solr/schema.xml vendor/ibexa/solr/src/lib/Resources/config/solr/language-fieldtypes.xml tests/lib/Resources/config/search/solr/8.11/solrconfig.xml tests/lib/Resources/config/search/solr/custom-fields-types.xml'
core_setup: 'shared'
- php: '8.1'
coverage: 'integration'
engine: 'solr'
config: 'phpunit-integration-solr.xml'
solr_version: '8.11.2'
solr_config: 'vendor/ibexa/solr/src/lib/Resources/config/solr/schema.xml vendor/ibexa/solr/src/lib/Resources/config/solr/language-fieldtypes.xml tests/lib/Resources/config/search/solr/8.11/solrconfig.xml tests/lib/Resources/config/search/solr/custom-fields-types.xml'
solr_cloud: 'yes'
core_setup: 'cloud'

Expand All @@ -120,7 +116,6 @@ jobs:
engine: 'solr'
config: 'phpunit-core-integration-legacy-solr.xml'
solr_version: '8.11.2'
solr_config: 'vendor/ibexa/solr/src/lib/Resources/config/solr/schema.xml vendor/ibexa/solr/src/lib/Resources/config/solr/language-fieldtypes.xml tests/lib/Resources/config/search/solr/8.11/solrconfig.xml tests/lib/Resources/config/search/solr/custom-fields-types.xml'
solr_cores: 'collection1'
core_setup: 'single'
regression: 'regression'
Expand All @@ -129,23 +124,20 @@ jobs:
engine: 'solr'
config: 'phpunit-core-integration-legacy-solr.xml'
solr_version: '8.11.2'
solr_config: 'vendor/ibexa/solr/src/lib/Resources/config/solr/schema.xml vendor/ibexa/solr/src/lib/Resources/config/solr/language-fieldtypes.xml tests/lib/Resources/config/search/solr/8.11/solrconfig.xml tests/lib/Resources/config/search/solr/custom-fields-types.xml'
core_setup: 'dedicated'
regression: 'regression'
- php: '8.1'
coverage: 'integration'
engine: 'solr'
config: 'phpunit-core-integration-legacy-solr.xml'
solr_version: '8.11.2'
solr_config: 'vendor/ibexa/solr/src/lib/Resources/config/solr/schema.xml vendor/ibexa/solr/src/lib/Resources/config/solr/language-fieldtypes.xml tests/lib/Resources/config/search/solr/8.11/solrconfig.xml tests/lib/Resources/config/search/solr/custom-fields-types.xml'
core_setup: 'shared'
regression: 'regression'
- php: '8.1'
coverage: 'integration'
engine: 'solr'
config: 'phpunit-core-integration-legacy-solr.xml'
solr_version: '8.11.2'
solr_config: 'vendor/ibexa/solr/src/lib/Resources/config/solr/schema.xml vendor/ibexa/solr/src/lib/Resources/config/solr/language-fieldtypes.xml tests/lib/Resources/config/search/solr/8.11/solrconfig.xml tests/lib/Resources/config/search/solr/custom-fields-types.xml'
solr_cloud: 'yes'
core_setup: 'cloud'
regression: 'regression'
Expand Down
6 changes: 4 additions & 2 deletions bin/init_solr.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
#!/usr/bin/env bash

SOLR_VERSION=${SOLR_VERSION:-'8.11.2'}
SOLR_VERSION_SHORT=${SOLR_VERSION%.*}

default_config_files[1]='vendor/ibexa/solr/src/lib/Resources/config/solr/schema.xml'
default_config_files[2]='vendor/ibexa/solr/src/lib/Resources/config/solr/language-fieldtypes.xml'
default_config_files[3]='tests/lib/Resources/config/search/solr/7.7/solrconfig.xml'
default_config_files[3]="tests/lib/Resources/config/search/solr/${SOLR_VERSION_SHORT}/solrconfig.xml"
default_config_files[4]='tests/lib/Resources/config/search/solr/custom-fields-types.xml'

default_cores[0]='core0'
Expand All @@ -17,7 +20,6 @@ default_shards=('shard0')

SOLR_PORT=${SOLR_PORT:-8983}
SOLR_DIR=${SOLR_DIR:-'__solr'}
SOLR_VERSION=${SOLR_VERSION:-'7.7.3'}
SOLR_INSTALL_DIR="${SOLR_DIR}/${SOLR_VERSION}"
SOLR_DEBUG=${SOLR_DEBUG:-false}
SOLR_HOME=${SOLR_HOME:-'ezcloud'}
Expand Down
Loading

0 comments on commit ad3b4dc

Please sign in to comment.