Add new temp folder in CI (#226) #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: Inox CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
tests: | |
if: github.event.pull_request.draft == false | |
runs-on: [self-hosted, linux] | |
env: | |
# define Java options for both official sbt and sbt-extras | |
JAVA_OPTS_TMP_DIR: ./tmp_java | |
JAVA_OPTS: -Xss64M -Xms1024M -Xmx8G -Djava.io.tmpdir=$JAVA_OPTS_TMP_DIR | |
JVM_OPTS: -Xss64M -Xms1024M -Xmx8G -Djava.io.tmpdir=$JAVA_OPTS_TMP_DIR | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Install and unpack sbt | |
run: | | |
wget https://github.com/sbt/sbt/releases/download/v1.10.1/sbt-1.10.1.tgz | |
tar xfz sbt-1.10.1.tgz | |
echo "PATH=./sbt/bin/:$PATH" >> "$GITHUB_ENV" | |
- name: Prepare temp folder | |
run: rm -rf $JAVA_OPTS_TMP_DIR && mkdir -p $JAVA_OPTS_TMP_DIR | |
- name: Install solvers | |
run: ./install_solvers.sh $GITHUB_WORKSPACE/.local/bin | |
- name: Add solvers to PATH | |
run: echo "$GITHUB_WORKSPACE/.local/bin" >> $GITHUB_PATH | |
- name: Test solvers availability | |
run: cvc5 --version && z3 --version && cvc4 --version | |
- name: Run Tests | |
run: sbt -Dtest-parallelism=10 -batch test | |
- name: Run integration tests | |
run: sbt -Dtest-parallelism=10 -batch it:test | |
- name: Clean up | |
run: rm -rf $JAVA_OPTS_TMP_DIR | |
fail_if_pull_request_is_draft: | |
if: github.event.pull_request.draft == true | |
runs-on: [self-hosted, linux] | |
steps: | |
- name: Fails in order to indicate that pull request needs to be marked as ready to review and tests workflows need to pass. | |
run: exit 1 |