forked from IGinX-THU/IGinX
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bea9d45
commit c03e383
Showing
10 changed files
with
66 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,33 @@ concurrency: | |
cancel-in-progress: true | ||
|
||
jobs: | ||
Build-IGinX-Dev: | ||
strategy: | ||
matrix: | ||
java: [ 8 ] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'corretto' | ||
java-version: ${{ matrix.java }} | ||
- name: Cache local Maven repository | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.m2/repository | ||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: | | ||
${{ runner.os }}-maven- | ||
- name: Maven Package | ||
run: mvn clean package -DskipTests | ||
- name: Upload Build Outputs and Intermediates | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: IGinX-Java${{ matrix.java }}-Dev | ||
path: . | ||
InfluxDB-Capacity-Expansion-ds: | ||
needs: Build-IGinX-Dev | ||
strategy: | ||
fail-fast: false | ||
#max-parallel: 20 | ||
|
@@ -23,17 +49,21 @@ jobs: | |
os: [ ubuntu-latest, macos-latest ] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
- name: Download IGinX-Java${{ matrix.java }}-Dev | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: IGinX-Java${{ matrix.java }}-Dev | ||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install Python dependencies | ||
- name: Install Python Dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
- name: Set up JDK ${{ matrix.java }} | ||
uses: actions/setup-java@v1 | ||
- name: Setup JDK ${{ matrix.java }} | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'corretto' | ||
java-version: ${{ matrix.java }} | ||
- name: Run ZooKeeper | ||
run: | | ||
|
@@ -59,8 +89,6 @@ jobs: | |
echo "$RUNNER_OS is not supported" | ||
exit 1 | ||
fi | ||
- name: Install with Maven | ||
run: mvn clean package -DskipTests | ||
- name: Write history Data | ||
run: | | ||
mvn test -q -Dtest=InfluxDBHistoryDataGeneratorTest -DfailIfNoTests=false | ||
|
@@ -71,6 +99,7 @@ jobs: | |
nohup "${GITHUB_WORKSPACE}/core/target/iginx-core-${VERSION}/sbin/start_iginx.sh" & | ||
InfluxDB-SQL-ds: | ||
needs: Build-IGinX-Dev | ||
strategy: | ||
fail-fast: false | ||
#max-parallel: 20 | ||
|
@@ -80,24 +109,22 @@ jobs: | |
os: [ ubuntu-latest, macos-latest ] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
- name: Download IGinX-Java${{ matrix.java }}-Dev | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: IGinX-Java${{ matrix.java }}-Dev | ||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install Python dependencies | ||
- name: Install Python Dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
- name: Set up JDK ${{ matrix.java }} | ||
uses: actions/setup-java@v1 | ||
- name: Setup JDK ${{ matrix.java }} | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'corretto' | ||
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 | ||
|
@@ -122,20 +149,19 @@ jobs: | |
echo "$RUNNER_OS is not supported" | ||
exit 1 | ||
fi | ||
- name: Install with Maven | ||
run: mvn clean package -DskipTests | ||
- name: Start IginX | ||
run: | | ||
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 SQL | ||
run: mvn test -q -Dtest=InfluxDBSQLSessionIT -DfailIfNoTests=false | ||
run: mvn surefire:test -q -Dtest=InfluxDBSQLSessionIT -DfailIfNoTests=false | ||
- uses: codecov/codecov-action@v1 | ||
with: | ||
file: ./**/target/site/jacoco/jacoco.xml | ||
name: codecov | ||
|
||
InfluxDB-SQL-SessionPool-ds: | ||
needs: Build-IGinX-Dev | ||
strategy: | ||
fail-fast: false | ||
#max-parallel: 20 | ||
|
@@ -145,24 +171,22 @@ jobs: | |
os: [ ubuntu-latest, macos-latest ] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
- name: Download IGinX-Java${{ matrix.java }}-Dev | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: IGinX-Java${{ matrix.java }}-Dev | ||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install Python dependencies | ||
- name: Install Python Dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
- name: Set up JDK ${{ matrix.java }} | ||
uses: actions/setup-java@v1 | ||
- name: Setup JDK ${{ matrix.java }} | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'corretto' | ||
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 | ||
|
@@ -187,8 +211,6 @@ jobs: | |
echo "$RUNNER_OS is not supported" | ||
exit 1 | ||
fi | ||
- name: Install with Maven | ||
run: mvn clean package -DskipTests | ||
- name: Start IginX | ||
uses: ./.github/actions/iginxRunner | ||
with: | ||
|
@@ -204,7 +226,7 @@ jobs: | |
with: | ||
version: ${VERSION} | ||
- name: A Lame Integration Test with Maven for SQL | ||
run: mvn test -q -Dtest=InfluxDBSQLSessionPoolIT -DfailIfNoTests=false | ||
run: mvn surefire:test -q -Dtest=InfluxDBSQLSessionPoolIT -DfailIfNoTests=false | ||
- uses: codecov/codecov-action@v1 | ||
with: | ||
file: ./**/target/site/jacoco/jacoco.xml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters