Skip to content

Commit

Permalink
Source env activate
Browse files Browse the repository at this point in the history
  • Loading branch information
vmilosevic committed Sep 4, 2024
1 parent a41abbc commit 388565b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,19 @@ RUN source env/activate && \
-DTTMLIR_ENABLE_RUNTIME_TESTS=ON \
-DTTMLIR_ENABLE_STABLEHLO=ON

RUN cmake --build build --config Release
RUN source env/activate && \
cmake --build build --config Release

RUN cmake --build build -- ttrt
RUN source env/activate && \
cmake --build build -- ttrt

# Run clang-tidy
RUN cmake --build build -- clang-tidy || true
RUN source env/activate && \
cmake --build build -- clang-tidy || true

# Run the tests
RUN cmake --build build -- check-ttmlir
RUN source env/activate && \
cmake --build build -- check-ttmlir

# Clean up the build directory
RUN rm -rf $BUILD_DIR/$PROJECT_NAME

0 comments on commit 388565b

Please sign in to comment.