Skip to content

Commit

Permalink
keep container going
Browse files Browse the repository at this point in the history
  • Loading branch information
assignUser committed Feb 14, 2024
1 parent 0f78df3 commit c22c205
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
CC: /opt/rh/gcc-toolset-9/root/bin/gcc
CXX: /opt/rh/gcc-toolset-9/root/bin/g++
CCACHE_DIR: ".ccache"
DOCKER_CMD: "docker run --ulimit memlock=-1 -v .:/velox -w /velox -d -e CC -e CXX -e CCACHE_DIR --name velox ghcr.io/facebookincubator/velox-dev:circleci-avx"
IMAGE: "ghcr.io/facebookincubator/velox-dev:circleci-avx"
defaults:
run:
shell: bash
Expand All @@ -67,12 +67,12 @@ jobs:
- run: |
mkdir -p .ccache
sudo apt update && sudo apt install ccache
docker run --ulimit memlock=-1 -v .:/velox -w /velox -d -e CC -e CXX -e CCACHE_DIR --name velox $IMAGE watch ls
- name: Minimal, no tests
run: |
df -h .
du -sh .
ccache -s
$DOCKER_CMD
docker exec velox make VELOX_BUILD_MINIMAL=ON VELOX_BUILD_TESTING=OFF '${{ matrix.type }}'
df -h .
du -sh .
Expand All @@ -82,7 +82,6 @@ jobs:
df -h .
du -sh .
ccache -s
$DOCKER_CMD
docker exec velox make VELOX_BUILD_TESTING=OFF release '${{ matrix.type }}'
df -h .
du -sh .
Expand All @@ -91,7 +90,6 @@ jobs:
df -h .
du -sh .
ccache -s
$DOCKER_CMD
docker exec velox make '${{ matrix.type }}'
docker exec velox make unittest
df -h .
Expand Down

0 comments on commit c22c205

Please sign in to comment.