Skip to content

Commit 48884da

Browse files
committed
Update CI workflow to not run montly; Remove javagdbnative entry from top-level README
1 parent 90c177a commit 48884da

File tree

2 files changed

+32
-4
lines changed

2 files changed

+32
-4
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: archive/javagdbnative
2+
on:
3+
push:
4+
paths:
5+
- 'archive/javagdbnative/**'
6+
- '.github/workflows/archive-javagdbnative.yml'
7+
pull_request:
8+
paths:
9+
- 'archive/javagdbnative/**'
10+
- '.github/workflows/archive-javagdbnative.yml'
11+
workflow_dispatch:
12+
permissions:
13+
contents: read
14+
jobs:
15+
run:
16+
name: Run 'archive/javagdbnative'
17+
runs-on: ubuntu-latest
18+
timeout-minutes: 15
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: graalvm/setup-graalvm@v1
22+
with:
23+
java-version: '21'
24+
distribution: 'graalvm'
25+
github-token: ${{ secrets.GITHUB_TOKEN }}
26+
cache: 'maven'
27+
native-image-job-reports: 'true'
28+
- name: Run 'archive/javagdbnative'
29+
run: |
30+
cd archive/javagdbnative
31+
mvn -Pnative -DskipTests --no-transfer-progress package
32+
./target/javagdb

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,6 @@ cd graalvm-demos
5959
<td align="left" width="30%"><a href="/native-netty-plot/">native-netty-plot</a><br><a href="https://github.com/graalvm/graalvm-demos/actions/workflows/native-netty-plot.yml"><img alt="native-netty-plot" src="https://github.com/graalvm/graalvm-demos/actions/workflows/native-netty-plot.yml/badge.svg" /></a></td>
6060
<td align="left" width="70%">A web server application, using the Netty framework, to demonstrate the use of isolates with Native Image<br><strong>Technologies: </strong>Native Image, Maven, Netty<br><strong>Reference: </strong><a href="https://medium.com/graalvm/instant-netty-startup-using-graalvm-native-image-generation-ed6f14ff7692">Instant Netty Startup using GraalVM Native Image Generation</a></td>
6161
</tr>
62-
<tr>
63-
<td align="left" width="30%"><a href="/javagdbnative/">javagdbnative</a><br><a href="https://github.com/graalvm/graalvm-demos/actions/workflows/javagdbnative.yml"><img alt="javagdbnative" src="https://github.com/graalvm/graalvm-demos/actions/workflows/javagdbnative.yml/badge.svg" /></a></td>
64-
<td align="left" width="70%">Demonstrates how to debug a Java application, built into a native executable in VS Code<br><strong>Technologies: </strong>Native Image, Maven, GraalVM Tools for Java<br><strong>Reference: </strong><a href="https://medium.com/graalvm/native-image-debugging-in-vs-code-2d5dda1989c1">Native Image Debugging in VS Code</a></td>
65-
</tr>
6662
<tr>
6763
<td align="left" width="30%"><a href="/native-image/add-logging/">native-image/add-logging</a><br><a href="https://github.com/graalvm/graalvm-demos/blob/ni-logging-demo/.github/workflows/native-image-add-logging.yml"><img alt="add-logging" src="https://github.com/graalvm/graalvm-demos/actions/workflows/native-image-add-logging.yml/badge.svg" /></a></td>
6864
<td align="left" width="70%">Demonstrates how to initialize Loggers with Native Image at the executable build or run time<br><strong>Technologies: </strong> Native Image<br><strong>Reference: </strong><a href="https://www.graalvm.org/latest/reference-manual/native-image/guides/add-logging-to-native-executable/">Add Logging to a Native Executable</a></td>

0 commit comments

Comments
 (0)