-
Notifications
You must be signed in to change notification settings - Fork 8
92 lines (89 loc) · 3.22 KB
/
func-udf.yml
File metadata and controls
92 lines (89 loc) · 3.22 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: "Function-Test-UDF"
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
VERSION: 0.6.0-SNAPSHOT
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
UDF-Test:
strategy:
fail-fast: false
max-parallel: 20
matrix:
java: [ 8 ]
python-version: [ "3.7" ]
os: [ ubuntu-latest, macos-latest ]
runs-on: ${{ matrix.os }}
env:
VERSION: 0.6.0-SNAPSHOT
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install pemja==0.1.5
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Cache Maven packages
uses: actions/[email protected]
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Run ZooKeeper
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
chmod +x "${GITHUB_WORKSPACE}/.github/zk.sh"
"${GITHUB_WORKSPACE}/.github/zk.sh"
elif [ "$RUNNER_OS" == "macOS" ]; then
chmod +x "${GITHUB_WORKSPACE}/.github/zk_macos.sh"
"${GITHUB_WORKSPACE}/.github/zk_macos.sh"
else
echo "$RUNNER_OS is not supported"
exit 1
fi
- name: Run IoTDB11
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
chmod +x "${GITHUB_WORKSPACE}/.github/iotdb11.sh"
"${GITHUB_WORKSPACE}/.github/iotdb11.sh"
elif [ "$RUNNER_OS" == "macOS" ]; then
chmod +x "${GITHUB_WORKSPACE}/.github/iotdb11_macos.sh"
"${GITHUB_WORKSPACE}/.github/iotdb11_macos.sh"
else
echo "$RUNNER_OS is not supported"
exit 1
fi
- name: Install with Maven
run: mvn clean package -DskipTests
- name: Start IginX
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo sed -i 's/needInitBasicUDFFunctions=false/needInitBasicUDFFunctions=true/g' ${GITHUB_WORKSPACE}/core/target/iginx-core-${VERSION}/conf/config.properties
elif [ "$RUNNER_OS" == "macOS" ]; then
sudo sed -i '' 's/needInitBasicUDFFunctions=false/needInitBasicUDFFunctions=true/' ${GITHUB_WORKSPACE}/core/target/iginx-core-${VERSION}/conf/config.properties
else
echo "$RUNNER_OS is not supported"
exit 1
fi
chmod +x "${GITHUB_WORKSPACE}/core/target/iginx-core-${VERSION}/sbin/start_iginx.sh"
nohup "${GITHUB_WORKSPACE}/core/target/iginx-core-${VERSION}/sbin/start_iginx.sh" &
- name: A Lame Integration Test with Maven for IoTDB
run: mvn test -q -Dtest=UDFIT -DfailIfNoTests=false
- uses: codecov/codecov-action@v1
with:
file: ./**/target/site/jacoco/jacoco.xml
name: codecov