[publish] Kill java processes before publishing to central

This commit is contained in:
Karlatemp 2022-11-29 09:41:33 +08:00
parent 889a78e572
commit bdaabeb7ef
No known key found for this signature in database
GPG Key ID: BA173CA2B9956C59
2 changed files with 37 additions and 0 deletions

View File

@ -130,6 +130,9 @@ jobs:
name: publish-stage-id
path: ci-release-helper/repoid
- name: Release RAM
run: node ci-release-helper/scripts/kill-java.js
- name: Publish to maven central
run: ./gradlew runcihelper --args publish-to-maven-central --scan "-Pcihelper.cert.username=${{ secrets.SONATYPE_USER }}" "-Pcihelper.cert.password=${{ secrets.SONATYPE_KEY }}"
@ -267,6 +270,9 @@ jobs:
- name: Initialize Publishing Caching Repository
run: ./gradlew runcihelper --args sync-maven-metadata ${{ env.gradleArgs }}
- name: Release RAM
run: node ci-release-helper/scripts/kill-java.js
# # Parallel compilation will exhaust machine memory causing OOM
# - name: Assemble
# run: ./gradlew assemble ${{ env.gradleArgs }} "-Porg.gradle.parallel=${{ matrix.parallelCompilation }}"
@ -289,6 +295,9 @@ jobs:
name: publish-stage-id
path: ci-release-helper/repoid
- name: Release RAM
run: node ci-release-helper/scripts/kill-java.js
- name: Publish to maven central
run: ./gradlew runcihelper --args publish-to-maven-central --scan "-Pcihelper.cert.username=${{ secrets.SONATYPE_USER }}" "-Pcihelper.cert.password=${{ secrets.SONATYPE_KEY }}"

View File

@ -0,0 +1,28 @@
/*
* Copyright 2019-2022 Mamoe Technologies and contributors.
*
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
*
* https://github.com/mamoe/mirai/blob/dev/LICENSE
*/
let ostype = require('os').type();
let child_process = require('child_process');
if (ostype.toLowerCase().indexOf('windows') !== -1) {
child_process.spawnSync('taskkill',
['/f', '/im', 'java*'],
{
stdio: "inherit"
}
);
} else {
child_process.spawnSync('pkill',
['-9', 'java'],
{
stdio: "inherit"
}
);
}