Skip to content

Commit 8576b83

Browse files
committed
rename maria to mariadb
1 parent c4eb9e2 commit 8576b83

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ jobs:
8484
MYSQL_USER: sa
8585
MYSQL_ROOT_PASSWORD: veryStrong123
8686
MYSQL_PASSWORD: veryStrong123
87+
MYSQL_DATABASE: testdb
8788
ports:
8889
- 3306:3306
8990
steps:
@@ -95,7 +96,7 @@ jobs:
9596
distribution: 'temurin'
9697
cache: maven
9798
- name: Run tests with mariadb
98-
run: mvn test -pl core -am -Dspring.profiles.active=maria
99+
run: mvn test -pl core -am -Dspring.profiles.active=mariadb
99100

100101
java-doc:
101102
runs-on: ubuntu-latest

core/src/test/java/org/sterl/spring/persistent_tasks/AbstractSpringTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
import uk.co.jemos.podam.api.PodamFactory;
3535
import uk.co.jemos.podam.api.PodamFactoryImpl;
3636

37-
//@ActiveProfiles("maria") // postgres mssql maria
37+
//@ActiveProfiles("mariadb") // postgres mssql mariadb
3838
@SpringBootTest(classes = SampleApp.class, webEnvironment = WebEnvironment.RANDOM_PORT)
3939
public class AbstractSpringTest {
4040

0 commit comments

Comments
 (0)