设置Jenkins服务器
要为JHipster配置Jenkins服务器,请参考以下指南:
Jenkins配置
要在Jenkins中设置JHipster项目,请使用以下配置:
对于Maven:
* Project name: `yourApplicationName`
* Source Code Management
* Git Repository: `[email protected]:xxxx/yourApplicationName.git`
* Branches to build: `*/main`
* Additional Behaviours: `Wipe out repository & force clone`
* Build Triggers
* Poll SCM / Schedule: `H/5 * * * *`
* Build<% if (buildTool == 'maven') { %>
* Invoke Maven / Tasks: `-Pprod clean package`
* Execute Shell / Command:
````
mvn spring-boot:run &
bootPid=$!
sleep 30s
gulp itest
kill $bootPid
````
* Post-build Actions
* Publish JUnit test result report / Test Report XMLs: `build/test-results/*.xml`
对于Gradle:
* Project name: `yourApplicationName`
* Source Code Management
* Git Repository: `[email protected]:xxxx/yourApplicationName.git`
* Branches to build: `*/main`
* Additional Behaviours: `Wipe out repository & force clone`
* Build Triggers
* Poll SCM / Schedule: `H/5 * * * *`
* Build
* Invoke Gradle script / Use Gradle Wrapper / Tasks: `-Pprod clean test bootWar`
* Execute Shell / Command:
````
./gradlew bootRun &
bootPid=$!
sleep 30s
gulp itest
kill $bootPid
````
* Post-build Actions
* Publish JUnit test result report / Test Report XMLs: `build/test-results/*.xml`