Skip to content

Commit 8d7850f

Browse files
committed
chore: disable code causing jvm crash
1 parent 65b63ca commit 8d7850f

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -155,18 +155,6 @@ jobs:
155155
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
156156
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
157157

158-
- name: 💥 Uploading jvm error logs
159-
if: steps.gradle-build.outcome == 'failure' && always()
160-
uses: actions/upload-artifact@v3
161-
with:
162-
name: ${{ matrix.os }}-jvm-error-logs
163-
path: |
164-
hs_err*
165-
${{ github.workspace }}/hs_err*
166-
${{ env.MKTEMP_PATH }}/*hs-err*
167-
if-no-files-found: warn
168-
retention-days: 30
169-
170158
- name: 📤 Uploading ${{ matrix.os }} executable jar
171159
if: steps.gradle-build.outcome == 'success' && runner.os == 'Linux'
172160
uses: actions/upload-artifact@v3
@@ -217,6 +205,18 @@ jobs:
217205
# git push origin HEAD:${{ github.event.repository.default_branch }}
218206
fi
219207
208+
- name: 💥 Uploading JVM error logs
209+
if: steps.gradle-build.outcome == 'failure' && always()
210+
uses: actions/upload-artifact@v3
211+
with:
212+
name: ${{ matrix.os }}-jvm-error-logs
213+
path: |
214+
hs_err*
215+
${{ github.workspace }}/hs_err*
216+
${{ env.MKTEMP_PATH }}/*hs-err*
217+
if-no-files-found: warn
218+
retention-days: 30
219+
220220
# GitHub Release Action on tag push
221221
release:
222222
name: 🚰 Release new version.

jdk-modules/ffm-api/src/main/kotlin/FFMApi.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ object FFMApi {
4141
fun run() {
4242
println("----- Project Panama -----")
4343
memoryAPIs()
44-
downCalls()
45-
terminal()
46-
dhReflection()
44+
// downCalls()
45+
// terminal()
46+
// dhReflection()
4747
}
4848

4949
private fun downCalls() {

0 commit comments

Comments
 (0)