Skip to content

Commit

Permalink
Merge pull request #460 from thulab/update_action_iotdb-2.0
Browse files Browse the repository at this point in the history
update action for iotdb-2.0
  • Loading branch information
xiaoyekanren authored Nov 13, 2024
2 parents 24c4157 + feb7e6b commit a216644
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,29 @@ jobs:
distribution: 'zulu'
java-version: ${{ matrix.java_version }}
# checkout iot-benchmark
- name: 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
Expand Down

0 comments on commit a216644

Please sign in to comment.