forked from apache/incubator-hugegraph-toolchain
-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (50 loc) · 1.32 KB
/
spark-connector-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: "hugegraph-spark-connector-ci"
on:
push:
branches:
- master
- /^release-.*$/
paths:
- hugegraph-spark-connector/**
- hugegraph-dist/**
- .github/workflows/**
- pom.xml
pull_request:
paths:
- hugegraph-spark-connector/**
- hugegraph-dist/**
- hugegraph-client/**
- .github/workflows/**
- pom.xml
jobs:
spark-connector-ci:
runs-on: ubuntu-latest
env:
TRAVIS_DIR: hugegraph-spark-connector/assembly/travis
VERSION_ID: 1.0.0
steps:
- name: Install JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Compile
run: |
mvn install -pl hugegraph-spark-connector -Dmaven.javadoc.skip=true -DskipTests -ntp
- name: Prepare env and service
run: |
$TRAVIS_DIR/install-hugegraph-from-tar.sh $VERSION_ID
- name: Run test
run: |
cd hugegraph-spark-connector && ls
mvn test