Skip to content

Commit 55c7212

Browse files
authored
Merge pull request #999 from juherr/feature/upgrade-ci
Upgrade CI
2 parents 2809833 + 335b5b7 commit 55c7212

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
os: [ ubuntu-18.04, ubuntu-20.04 ]
10-
java: [ '11', '15' ]
11-
db: [ 'mysql:5.7.35', 'mysql:8.0', 'mariadb:10.3', 'mariadb:10.5' ]
9+
os: [ ubuntu-20.04, ubuntu-22.04 ]
10+
java: [ '11', '17' ]
11+
db: [ 'mysql:5.7', 'mysql:8.0', 'mariadb:10.3', 'mariadb:10.4', 'mariadb:10.5', 'mariadb:10.6' ]
1212
runs-on: ${{ matrix.os }}
1313
services:
1414
mysql:
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/setup-java@v2
2727
with:
2828
java-version: ${{ matrix.java }}
29-
distribution: 'adopt'
29+
distribution: 'temurin'
3030
cache: maven
3131

3232
- name: Set up MySQL

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ https://github.com/steve-community/steve/wiki/Charging-Station-Compatibility
3131
### System Requirements
3232

3333
SteVe requires
34-
* JDK 11 (both Oracle JDK and OpenJDK are supported)
34+
* JDK 11 (both Oracle JDK and Adoptium are supported)
3535
* Maven
36-
* MariaDB 10.2.1 or later. MySQL 5.7.7 or later works as well, but especially MySQL 8 introduces more hassle. We suggest MariaDB 10.3.
36+
* MariaDB 10.2.1 or later. MySQL 5.7.7 or later works as well, but especially MySQL 8 introduces more hassle. We suggest MariaDB 10.4.
3737

3838
to build and run.
3939

@@ -48,7 +48,7 @@ SteVe is designed to run standalone, a java servlet container / web server (e.g.
4848
Make sure MySQL is reachable via TCP (e.g., remove `skip-networking` from `my.cnf`).
4949
The following MySQL statements can be used as database initialization (adjust database name and credentials according to your setup).
5050

51-
* For MariaDB (all versions) and MySQL 5.7:
51+
* For MariaDB (all LTS versions) and MySQL 5.7:
5252
```
5353
CREATE DATABASE stevedb CHARACTER SET utf8 COLLATE utf8_unicode_ci;
5454
CREATE USER 'steve'@'localhost' IDENTIFIED BY 'changeme';

0 commit comments

Comments
 (0)