[修改]gitea自动构建/发布脚本文件
CI / Docker-Build (push) Failing after 19m33s
Details
CI / Docker-Build (push) Failing after 19m33s
Details
This commit is contained in:
parent
495681db5d
commit
212773e679
|
@ -24,6 +24,13 @@ jobs:
|
||||||
uses: https://gitea.joylink.club/actions/local-setup-maven@v0.1.1
|
uses: https://gitea.joylink.club/actions/local-setup-maven@v0.1.1
|
||||||
with:
|
with:
|
||||||
maven-version: 3.8.8
|
maven-version: 3.8.8
|
||||||
|
mirrors: |
|
||||||
|
<mirror>
|
||||||
|
<id>aliyun</id>
|
||||||
|
<name>aliyun maven</name>
|
||||||
|
<url>https://maven.aliyun.com/repository/public</url>
|
||||||
|
<mirrorOf>central</mirrorOf>
|
||||||
|
</mirror>
|
||||||
- name: 构建
|
- name: 构建
|
||||||
run: |
|
run: |
|
||||||
mvn -Dmaven.test.skip=true clean package
|
mvn -Dmaven.test.skip=true clean package
|
||||||
|
|
|
@ -23,6 +23,13 @@ jobs:
|
||||||
uses: https://gitea.joylink.club/actions/local-setup-maven@v0.1.1
|
uses: https://gitea.joylink.club/actions/local-setup-maven@v0.1.1
|
||||||
with:
|
with:
|
||||||
maven-version: 3.8.8
|
maven-version: 3.8.8
|
||||||
|
mirrors: |
|
||||||
|
<mirror>
|
||||||
|
<id>aliyun</id>
|
||||||
|
<name>aliyun maven</name>
|
||||||
|
<url>https://maven.aliyun.com/repository/public</url>
|
||||||
|
<mirrorOf>central</mirrorOf>
|
||||||
|
</mirror>
|
||||||
- name: 构建
|
- name: 构建
|
||||||
run: |
|
run: |
|
||||||
mvn -Dmaven.test.skip=true clean package
|
mvn -Dmaven.test.skip=true clean package
|
||||||
|
|
|
@ -27,6 +27,6 @@ public class CgyStatsBO {
|
||||||
private AtomicLong visitor;
|
private AtomicLong visitor;
|
||||||
//实训人数
|
//实训人数
|
||||||
private final Set<Long> userSet = new HashSet<>();
|
private final Set<Long> userSet = new HashSet<>();
|
||||||
//实训时长
|
//实训时长/s
|
||||||
private AtomicLong duration;
|
private AtomicLong duration;
|
||||||
}
|
}
|
||||||
|
|
|
@ -98,7 +98,7 @@ public class CgyStatsService {
|
||||||
+ "app_secret=" + statsBO.getAppSecret();
|
+ "app_secret=" + statsBO.getAppSecret();
|
||||||
body.put("sign", EncryptUtil.md5(sb).toLowerCase());
|
body.put("sign", EncryptUtil.md5(sb).toLowerCase());
|
||||||
//扩展字段
|
//扩展字段
|
||||||
body.put("duration", statsBO.getDuration().get());
|
body.put("duration", statsBO.getDuration().get() / 60); //分钟
|
||||||
SimulationInfoQueryVO queryVO = new SimulationInfoQueryVO();
|
SimulationInfoQueryVO queryVO = new SimulationInfoQueryVO();
|
||||||
queryVO.setFunctionId(statsBO.getFunctionId());
|
queryVO.setFunctionId(statsBO.getFunctionId());
|
||||||
List<SimulationInfoVO> sims = simulationService.listAllSimulation(queryVO);
|
List<SimulationInfoVO> sims = simulationService.listAllSimulation(queryVO);
|
||||||
|
@ -108,7 +108,7 @@ public class CgyStatsService {
|
||||||
httpHeaders.setContentType(MediaType.APPLICATION_JSON);
|
httpHeaders.setContentType(MediaType.APPLICATION_JSON);
|
||||||
HttpEntity<Map<String, Object>> httpEntity = new HttpEntity<>(body, httpHeaders);
|
HttpEntity<Map<String, Object>> httpEntity = new HttpEntity<>(body, httpHeaders);
|
||||||
Map<String, String> resBody = restTemplate.postForObject(
|
Map<String, String> resBody = restTemplate.postForObject(
|
||||||
"https://common-dev.educloudxr.com/api/applicationCenter/openapi/summary", httpEntity,
|
"http://gdjtapp.cdivtc.edu.cn/api/applicationCenter/openapi/summary", httpEntity,
|
||||||
Map.class);
|
Map.class);
|
||||||
if (resBody != null && Objects.equals(resBody.get("code"), "100001")) {
|
if (resBody != null && Objects.equals(resBody.get("code"), "100001")) {
|
||||||
log.error(String.format("成工院虚仿平台同步数据失败:[%s][%s]", resBody.get("msg"),
|
log.error(String.format("成工院虚仿平台同步数据失败:[%s][%s]", resBody.get("msg"),
|
||||||
|
|
Loading…
Reference in New Issue