Skip to content

Commit 6d7ee21

Browse files
authored
feat: initial build pipeline
1 parent 05e46d8 commit 6d7ee21

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/gradle.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Java CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Set up JDK 1.8
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: 1.8
16+
17+
- name: Build with Gradle
18+
run: ./gradlew build
19+
20+
- name: Upload build artifact
21+
uses: actions/upload-artifact@v1
22+
with:
23+
name: kafka-dsf.jar
24+
path: build/libs/kafka-dsf-all.jar

0 commit comments

Comments
 (0)