[hibernate/hibernate-search] 9e13cb: Force the use of bash even on Windows for GitHub A...
by Yoann Rodière
Branch: refs/heads/main
Home: https://github.com/hibernate/hibernate-search
Commit: 9e13cb8e85cec72041c0339ba62cc64f0ed5c5a1
https://github.com/hibernate/hibernate-search/commit/9e13cb8e85cec72041c0...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2023-09-22 (Fri, 22 Sep 2023)
Changed paths:
M .github/workflows/build.yml
Log Message:
-----------
Force the use of bash even on Windows for GitHub Actions
Powershell would not support escaping newlines,
and would interpret dots as some object-oriented field accessor.
None of this nonsense, let's just use bash.
Commit: d526b7443991ab26ecee3f40321d4e6ba06f05bb
https://github.com/hibernate/hibernate-search/commit/d526b7443991ab26ecee...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2023-09-22 (Fri, 22 Sep 2023)
Changed paths:
M CONTRIBUTING.md
M build/parents/build/pom.xml
M build/parents/integrationtest/pom.xml
M documentation/pom.xml
M integrationtest/backend/elasticsearch/pom.xml
M integrationtest/backend/lucene/pom.xml
M integrationtest/java/modules/orm-coordination-outbox-polling-elasticsearch/pom.xml
M integrationtest/java/modules/orm-elasticsearch/pom.xml
M integrationtest/java/modules/orm-lucene/pom.xml
M integrationtest/java/modules/pojo-standalone-elasticsearch/pom.xml
M integrationtest/java/modules/pojo-standalone-lucene/pom.xml
M integrationtest/mapper/orm-batch-jsr352/pom.xml
M integrationtest/mapper/orm-realbackend/pom.xml
M integrationtest/mapper/orm-spring-uberjar/application/pom.xml
M integrationtest/mapper/pojo-standalone-realbackend/pom.xml
M integrationtest/performance/backend/elasticsearch/pom.xml
M integrationtest/performance/backend/lucene/pom.xml
M integrationtest/showcase/library/pom.xml
M integrationtest/v5migrationhelper/engine/pom.xml
M integrationtest/v5migrationhelper/orm/pom.xml
Log Message:
-----------
Change Maven config to allow skipping Lucene or Elasticsearch tests from the Maven CLI
Commit: ff65e8ef1ebb5db38b2b28f3b812b98c4f1a223d
https://github.com/hibernate/hibernate-search/commit/ff65e8ef1ebb5db38b2b...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2023-09-22 (Fri, 22 Sep 2023)
Changed paths:
M .github/workflows/build.yml
Log Message:
-----------
Skip Elasticsearch tests on the GitHub Actions Windows build
Commit: fe267edfda2a458fff939c876677f260718704e0
https://github.com/hibernate/hibernate-search/commit/fe267edfda2a458fff93...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2023-09-22 (Fri, 22 Sep 2023)
Changed paths:
M .github/workflows/build.yml
M CONTRIBUTING.md
Log Message:
-----------
Skip docker-maven-plugin completely on GitHub Action's Windows VMs
Commit: 45d270f4f0b0fe4985d4c44580e46e0ea1da03f2
https://github.com/hibernate/hibernate-search/commit/45d270f4f0b0fe4985d4...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2023-09-22 (Fri, 22 Sep 2023)
Changed paths:
M integrationtest/performance/backend/elasticsearch/pom.xml
M integrationtest/performance/backend/lucene/pom.xml
Log Message:
-----------
Skip performance tests on Windows
For some reason they don't work
Commit: b754e3bb595d6483cf573944fdc1cb6c61395485
https://github.com/hibernate/hibernate-search/commit/b754e3bb595d6483cf57...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2023-09-22 (Fri, 22 Sep 2023)
Changed paths:
M integrationtest/mapper/orm-coordination-outbox-polling/pom.xml
Log Message:
-----------
Fix test filters for Windows
The documentation states that we should only get forward slashes here,
but that doesn't seem to be the case.
Commit: 050e4cce8d40875c9d30ec5424a61ba556597698
https://github.com/hibernate/hibernate-search/commit/050e4cce8d40875c9d30...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2023-09-22 (Fri, 22 Sep 2023)
Changed paths:
M .github/workflows/build.yml
Log Message:
-----------
Fix GitHub Actions build reports on Windows
Commit: b0c1431fa04fc395f03603baf69888f301d1f6bb
https://github.com/hibernate/hibernate-search/commit/b0c1431fa04fc395f036...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2023-09-22 (Fri, 22 Sep 2023)
Changed paths:
M integrationtest/mapper/orm-coordination-outbox-polling/pom.xml
Log Message:
-----------
Skip outbox-polling integration tests on Windows
See https://hibernate.atlassian.net/browse/HSEARCH-4965
Commit: c35f5b5ed7ce9ddcd9ef3a0a1eeb190589805c9d
https://github.com/hibernate/hibernate-search/commit/c35f5b5ed7ce9ddcd9ef...
Author: marko-bekhta <marko.prykladna(a)gmail.com>
Date: 2023-09-22 (Fri, 22 Sep 2023)
Changed paths:
M util/common/src/main/java/org/hibernate/search/util/common/jar/impl/CodeSource.java
M util/common/src/test/java/org/hibernate/search/util/common/jar/impl/CodeSourceTest.java
Log Message:
-----------
HSEARCH-4947 Make sure that nested jars can be read on Windows
Commit: e42f81deb79d2aed38b4a12a140a4e76472d0dee
https://github.com/hibernate/hibernate-search/commit/e42f81deb79d2aed38b4...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2023-09-22 (Fri, 22 Sep 2023)
Changed paths:
M integrationtest/mapper/orm-realbackend/pom.xml
M integrationtest/mapper/orm-realbackend/src/test/java/org/hibernate/search/integrationtest/mapper/orm/realbackend/schema/management/ElasticsearchSchemaManagerExporterIT.java
M integrationtest/mapper/orm-realbackend/src/test/java/org/hibernate/search/integrationtest/mapper/orm/realbackend/schema/management/LuceneSchemaManagerExporterIT.java
Log Message:
-----------
HSEARCH-4947 Fix incomplete configuration in *SchemaManagerExporterIT
Not strictly necessary, but while we're at it...
Compare: https://github.com/hibernate/hibernate-search/compare/c0efe80f9960...e42f...
1 year, 3 months