MvStore upgrade and tuning #14
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
name: Maven Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Java 11 Build and Verify | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Set up Java and Maven | |
uses: actions/setup-java@v3 | |
with: | |
distribution: zulu | |
java-version: 11 | |
cache: maven | |
- name: Setup HTTPS mirror proxy for Maven Central (due to Chroncile Map POM) | |
uses: s4u/[email protected] | |
with: | |
mirrors: '[{"id": "central-https-mirror", "name": "HTTPS Mirror of Maven Central", "mirrorOf": "central", "url": "https://repo1.maven.org/maven2"}]' | |
- name: Build with Maven | |
run: mvn -B verify | |
- name: Simple benchmark test | |
run: java -jar target/benchmarks.jar -foe true -wi 0 -i 1 -f 1 -p num=512 |