Experiment cleanup support test cases (#583) #381
This file contains hidden or 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: | |
| pull_request: | |
| branches: | |
| - master | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Set up OS dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential automake bison flex libboost-all-dev libevent-dev libssl-dev libtool pkg-config | |
| - name: Set up Thrift 0.22.0 | |
| run: | | |
| wget -q https://dlcdn.apache.org/thrift/0.22.0/thrift-0.22.0.tar.gz | |
| tar -xzf thrift-0.22.0.tar.gz | |
| cd thrift-0.22.0 | |
| ./configure --without-rs --enable-libs=no --enable-tests=no | |
| make -j$(nproc) | |
| sudo make install | |
| thrift --version | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: "temurin" | |
| java-version: "17" | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Build with Maven (skip tests) | |
| run: mvn clean install -DskipTests |