Skip to content

Commit e4ee436

Browse files
authored
Create build-skiptests.yml
1 parent 195c369 commit e4ee436

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build All without testing
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-24.04
9+
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: set up JDK 1.21
13+
uses: actions/setup-java@v4
14+
with:
15+
java-version: '21'
16+
distribution: 'corretto'
17+
- name: Build with Gradle
18+
run: |
19+
./gradlew build --info --stacktrace -x
20+
./gradlew :RMBTClient:shadowJar -x
21+
- name: Archive files
22+
uses: actions/upload-artifact@v4
23+
with:
24+
name: outputs
25+
path: |
26+
RMBTClient/build/libs/*-all.jar
27+
retention-days: 365

0 commit comments

Comments
 (0)