Skip to content

Commit

Permalink
enable rust in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dbw9580 committed Oct 26, 2023
1 parent d0ad98f commit 9eec1ee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dev/github/run_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export MAVEN_OPTS="-Dorg.slf4j.simpleLogger.showDateTime=true -Dorg.slf4j.simple
# Always use java 8 to compile the source code
JAVA_HOME=/usr/local/openjdk-8
PATH=$JAVA_HOME/bin:$PATH
mvn -Duser.home=/home/jenkins -T 4C clean install -DskipTests
mvn -Duser.home=/home/jenkins -T 4C clean install -P native-components -DskipTests

# compile go cli
./build/cli/build-cli.sh
Expand Down
2 changes: 1 addition & 1 deletion dev/github/run_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function main {
fi

if [ -z "${ALLUXIO_DOCKER_IMAGE}" ]; then
ALLUXIO_DOCKER_IMAGE="alluxio/alluxio-maven:0.1.3-jdk8"
ALLUXIO_DOCKER_IMAGE="alluxio/alluxio-maven:0.1.4-jdk8"
fi

local run_args="--rm"
Expand Down
4 changes: 2 additions & 2 deletions dev/github/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PATH_BACKUP=${PATH}
JAVA_HOME=/usr/local/openjdk-8
PATH=$JAVA_HOME/bin:$PATH
mvn -Duser.home=/home/jenkins -T 4C clean install -Dfindbugs.skip -Dcheckstyle.skip -DskipTests -Dmaven.javadoc.skip \
-Dlicense.skip -Dsort.skip ${mvn_args}
-Dlicense.skip -Dsort.skip -P native-components ${mvn_args}

# Set things up so that the current user has a real name and can authenticate.
myuid=$(id -u)
Expand All @@ -56,4 +56,4 @@ fi

# Run tests
mvn -Duser.home=/home/jenkins test -Dmaven.main.skip -Dskip.protoc=true -Dmaven.javadoc.skip -Dlicense.skip=true \
-Dcheckstyle.skip=true -Dfindbugs.skip=true -Dsort.skip -Dsurefire.forkCount=${ALLUXIO_FORK_COUNT} ${mvn_args}
-Dcheckstyle.skip=true -Dfindbugs.skip=true -Dsort.skip -Dsurefire.forkCount=${ALLUXIO_FORK_COUNT} -P native-components ${mvn_args}

0 comments on commit 9eec1ee

Please sign in to comment.