Skip to content

Commit

Permalink
OZ-68: ozone-flink-jobs to be cleaned / refactored / normalized (#27)
Browse files Browse the repository at this point in the history
OZ-68: Skip tests for deployment steps in github workflows
  • Loading branch information
wluyima authored Jun 3, 2024
1 parent 70336ed commit 5f50d61
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ADD ./pom.xml pom.xml
#cache dependencies
RUN mvn dependency:go-offline
ADD ./src src/
RUN mvn clean package
RUN mvn clean package -DskipTests --batch-mode

FROM eclipse-temurin:11-jre
ARG JAR_VERSION=2.2.0-SNAPSHOT
Expand All @@ -13,4 +13,4 @@ WORKDIR /app
COPY --from=builder target/flink-jobs-${JAR_VERSION}-etl-streaming.jar streaming-etl-job.jar
COPY streamimg-etl.sh streamimg-etl.sh
RUN chmod +x streamimg-etl.sh
ENTRYPOINT ["/app/streamimg-etl.sh"]
ENTRYPOINT ["/app/streamimg-etl.sh"]
2 changes: 1 addition & 1 deletion Dockerfile_batch
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ENV MAVEN_OPTS="-Xmx2g"
COPY ./pom.xml pom.xml
COPY ./src src/

RUN mvn clean install -Pbatch
RUN mvn clean install -Pbatch -DskipTests --batch-mode

FROM eclipse-temurin:11-jre
ARG JAR_VERSION=2.2.0-SNAPSHOT
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_parquet_export
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM maven:3.8.6-eclipse-temurin-11 as builder
ADD ./pom.xml pom.xml
RUN mvn dependency:go-offline
ADD ./src src/
RUN mvn clean install -Pbatch
RUN mvn clean install -Pbatch -DskipTests --batch-mode

FROM eclipse-temurin:11-jre
ARG JAR_VERSION=2.2.0-SNAPSHOT
Expand Down

0 comments on commit 5f50d61

Please sign in to comment.