mirror of
https://github.com/mamoe/mirai.git
synced 2025-02-04 07:42:26 +08:00
[publish] Kill java processes before publishing to central
This commit is contained in:
parent
889a78e572
commit
bdaabeb7ef
9
.github/workflows/release.yml
vendored
9
.github/workflows/release.yml
vendored
@ -130,6 +130,9 @@ jobs:
|
|||||||
name: publish-stage-id
|
name: publish-stage-id
|
||||||
path: ci-release-helper/repoid
|
path: ci-release-helper/repoid
|
||||||
|
|
||||||
|
- name: Release RAM
|
||||||
|
run: node ci-release-helper/scripts/kill-java.js
|
||||||
|
|
||||||
- name: Publish to maven central
|
- 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 }}"
|
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
|
- name: Initialize Publishing Caching Repository
|
||||||
run: ./gradlew runcihelper --args sync-maven-metadata ${{ env.gradleArgs }}
|
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
|
# # Parallel compilation will exhaust machine memory causing OOM
|
||||||
# - name: Assemble
|
# - name: Assemble
|
||||||
# run: ./gradlew assemble ${{ env.gradleArgs }} "-Porg.gradle.parallel=${{ matrix.parallelCompilation }}"
|
# run: ./gradlew assemble ${{ env.gradleArgs }} "-Porg.gradle.parallel=${{ matrix.parallelCompilation }}"
|
||||||
@ -289,6 +295,9 @@ jobs:
|
|||||||
name: publish-stage-id
|
name: publish-stage-id
|
||||||
path: ci-release-helper/repoid
|
path: ci-release-helper/repoid
|
||||||
|
|
||||||
|
- name: Release RAM
|
||||||
|
run: node ci-release-helper/scripts/kill-java.js
|
||||||
|
|
||||||
- name: Publish to maven central
|
- 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 }}"
|
run: ./gradlew runcihelper --args publish-to-maven-central --scan "-Pcihelper.cert.username=${{ secrets.SONATYPE_USER }}" "-Pcihelper.cert.password=${{ secrets.SONATYPE_KEY }}"
|
||||||
|
|
||||||
|
28
ci-release-helper/scripts/kill-java.js
Normal file
28
ci-release-helper/scripts/kill-java.js
Normal 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"
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user