File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed
src/test/java/org/javawebstack/orm/test Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 2424 - name : Build
2525 run : mvn -B package --file pom.xml
2626 env :
27- MYSQL_HOST : 127.0.0.1
2827 MYSQL_PORT : ${{ job.services.mysql.ports[3306] }}
29- MYSQL_USER : test
28+ MYSQL_USERNAME : test
3029 MYSQL_PASSWORD : test
3130 - name : Deploy to JavaWebStack Repository
3231 run : mvn deploy -s build/settings.xml
Original file line number Diff line number Diff line change @@ -16,11 +16,6 @@ public abstract class ORMTestCase {
1616 String name = System .getenv ("MYSQL_DATABASE" );
1717 String user = System .getenv ("MYSQL_USERNAME" );
1818 String password = System .getenv ("MYSQL_PASSWORD" );
19- System .out .println (host );
20- System .out .println (port );
21- System .out .println (name );
22- System .out .println (user );
23- System .out .println (password );
2419 sql = new MySQL (
2520 host != null ? host : "localhost" ,
2621 port != null ? Integer .parseInt (port ) : 3306 ,
You can’t perform that action at this time.
0 commit comments