-
Notifications
You must be signed in to change notification settings - Fork 105
170 lines (167 loc) · 6.58 KB
/
main.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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
name: compile benchmark
on:
# push:
# branches:
# - master
schedule:
- cron: "* */24 * * *"
workflow_dispatch:
jobs:
#----start----
collect:
runs-on: ubuntu-latest
outputs:
date: ${{ steps.sys-info.outputs.date }}
commit_id: ${{ steps.bm-info.outputs.commit_id }}
commit_id_short: ${{ steps.bm-info.outputs.commit_id_short }}
commit_time: ${{ steps.bm-info.outputs.commit_time }}
commit_user: ${{ steps.bm-info.outputs.commit_user }}
last_commit: ${{ steps.bm-info.outputs.last_commit }}
steps:
# collect sys
- name: collect common info
shell: bash
id: sys-info
run: echo "date=$(date +"%Y-%m-%d")" >> $GITHUB_OUTPUT
# checkout iot-benchmark
- name: checkout iot-benchmark
uses: actions/checkout@v4
with:
path: iot-benchmark
repository: 'thulab/iot-benchmark'
ref: 'master'
fetch-depth: 0
# collect iot-benchmark
- name: collect Benchmark information
id: bm-info
run: |
cd ${{ github.workspace }}/iot-benchmark
echo "commit_id=$( git rev-parse HEAD )" >> "$GITHUB_OUTPUT"
echo commit_id is $(git rev-parse HEAD)
echo "commit_id_short=$( git rev-parse --short HEAD )" >> "$GITHUB_OUTPUT"
echo "commit_time=$(git log -n1 --pretty='format:%cd' --date=iso)" >> "$GITHUB_OUTPUT"
echo "commit_user=$(git log | head -n 2 | tail -n 1 | cut -d ' ' -f 2)" >> "$GITHUB_OUTPUT"
echo "last_commit=$(cat .github/release_history.txt | tail -n 1)" >> "$GITHUB_OUTPUT"
echo last_commit is $(cat .github/release_history.txt | tail -n 1)
# compare
- name: check check's results
run: |
echo "txt pid: ${{ steps.bm-info.outputs.last_commit }}"
echo "res pid: ${{ steps.bm-info.outputs.commit_id }}"
echo "last commit user: ${{ steps.bm-info.outputs.commit_user }}"
# equal means no update
# "exit 0" is exits normally,"exit other" is exception exit
- name: check check's results
if: ${{ steps.bm-info.outputs.commit_id == steps.bm-info.last_commit || steps.bm-info.outputs.commit_user == 'github-actions[bot]' }}
run: exit 1
#----end----
#----start----
create-release:
runs-on: ubuntu-latest
needs: [collect]
steps:
- name: Create release
id: create-release
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: ${{ needs.collect.outputs.date }} ${{ needs.collect.outputs.commit_id_short }} java${{ matrix.java_version }}
tag: ${{ needs.collect.outputs.date }}-${{ needs.collect.outputs.commit_id_short }}-java${{ matrix.java_version }}
prerelease: false
draft: false
body: |
Auto build...
Commit Time: ${{ needs.collect.outputs.commit_time }}
Commit ID: ${{ needs.collect.outputs.commit_id }}
Java Version: java${{ matrix.java_version }}
#----end----
#----start----
compile:
runs-on: ubuntu-latest
needs: [collect,create-release]
strategy:
fail-fast: false
max-parallel: 20
matrix:
java_version: [ 8 ]
release_db: [ iotdb-1.0,iotdb-1.1,iotdb-1.3,iotdb-2.0,influxdb,influxdb-2.0,timescaledb,timescaledb-cluster ]
steps:
# set java
- name: Set java ${{ matrix.java_version }}
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java_version }}
# checkout iot-benchmark
- name: Checkout iot-benchmark
uses: actions/checkout@v4
with:
path: iot-benchmark
repository: 'thulab/iot-benchmark'
ref: 'master'
fetch-depth: 0
# checkout iotdb
- name: Checkout iotdb
uses: actions/checkout@v4
if: ${{ matrix.release_db == 'iotdb-2.0' }}
with:
path: iotdb
repository: 'apache/iotdb'
ref: 'master'
fetch-depth: 0
# compile iotdb
- name: Compile iotdb
if: ${{ matrix.release_db == 'iotdb-2.0' }}
run: |
cd ${{ github.workspace }}/iotdb
mvn clean
mvn install -DskipTests -am -pl iotdb-client/session
# compile benchmark
- name: Build benchmark binaries
id: compile-benchmark
run: |
cd ${{ github.workspace }}/iot-benchmark
git checkout ${{ needs.collect.outputs.commit_id }}
mvn clean package -DskipTests -am -pl core,${{ matrix.release_db }}
mv ${{ github.workspace }}/iot-benchmark/${{ matrix.release_db }}/target/iot-benchmark-${{ matrix.release_db }}.zip ${{ github.workspace }}/iot-benchmark-${{ matrix.release_db }}-java${{ matrix.java_version }}.zip
ls -l ${{ github.workspace }}
du -s ${{ github.workspace }}/iot-benchmark-${{ matrix.release_db }}-java${{ matrix.java_version }}.zip
#---upload
- name: Upload iot-benchmark-${{ matrix.release_db }}-java${{ matrix.java_version }}.zip using ${{ matrix.java_version }}
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: ${{ needs.collect.outputs.date }} ${{ needs.collect.outputs.commit_id_short }} java${{ matrix.java_version }}
tag: ${{ needs.collect.outputs.date }}-${{ needs.collect.outputs.commit_id_short }}-java${{ matrix.java_version }}
prerelease: false
draft: false
allowUpdates: true
artifactErrorsFailBuild: true
artifacts: "${{ github.workspace }}/iot-benchmark-${{ matrix.release_db }}-java${{ matrix.java_version }}.zip"
#----end----
#----start----
push-commit:
runs-on: ubuntu-latest
needs: [collect,create-release,compile]
steps:
# checkout iot-benchmark
- name: checkout iot-benchmark
uses: actions/checkout@v4
with:
path: iot-benchmark
repository: 'thulab/iot-benchmark'
ref: 'master'
fetch-depth: 0
# git push commit
- name: push commit
env:
github_token: ${{ secrets.GITHUB_TOKEN }}
run: |
cd ${{ github.workspace }}/iot-benchmark
git config --local user.email "${{ secrets.MAIL_FOR_BOT }}"
git config --local user.name "github-actions[bot]"
echo ${{ needs.collect.outputs.commit_id }} >> .github/release_history.txt
git add .github/release_history.txt
git commit -m "${{ needs.collect.outputs.date }}-${{ needs.collect.outputs.commit_id_short }}"
git push -u origin master
#----end----