diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 4b02266407d3..b191957891c5 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -52,11 +52,11 @@ jobs: file: "scripts/circleci-container.dockfile" args: "cpu_target=avx" tags: "ghcr.io/facebookincubator/velox-dev:circleci-avx" - - name: Check + - name: Torcharrow file: "scripts/velox-torcharrow-container.dockfile" args: "cpu_target=avx" tags: "ghcr.io/facebookincubator/velox-dev:torcharrow-avx" - - name: Check + - name: Dev file: "scripts/ubuntu-22.04-cpp.dockerfile" args: "" tags: "ghcr.io/facebookincubator/velox-dev:amd64-ubuntu-22.04-avx" diff --git a/scripts/check-container.dockfile b/scripts/check-container.dockfile index d5f1ba4c873e..13d368f4f6bd 100644 --- a/scripts/check-container.dockfile +++ b/scripts/check-container.dockfile @@ -13,6 +13,6 @@ # limitations under the License. FROM amd64/ubuntu:22.04 ARG cpu_target -COPY setup-check.sh /root -COPY setup-helper-functions.sh / +COPY scripts/setup-check.sh /root +COPY scripts/setup-helper-functions.sh / RUN CPU_TARGET="$cpu_target" bash /root/setup-check.sh diff --git a/scripts/circleci-container.dockfile b/scripts/circleci-container.dockfile index 3c9152d7e7eb..b3a7ee96c4fe 100644 --- a/scripts/circleci-container.dockfile +++ b/scripts/circleci-container.dockfile @@ -15,6 +15,6 @@ # FROM quay.io/centos/centos:stream8 ARG cpu_target -COPY setup-circleci.sh / -COPY setup-helper-functions.sh / +COPY scripts/setup-circleci.sh / +COPY scripts/setup-helper-functions.sh / RUN mkdir build && ( cd build && CPU_TARGET="$cpu_target" bash /setup-circleci.sh ) && rm -rf build diff --git a/scripts/velox-torcharrow-container.dockfile b/scripts/velox-torcharrow-container.dockfile index f4498101cfb9..7d3ce467a007 100644 --- a/scripts/velox-torcharrow-container.dockfile +++ b/scripts/velox-torcharrow-container.dockfile @@ -16,6 +16,6 @@ FROM quay.io/pypa/manylinux2014_x86_64 ARG cpu_target -COPY setup-velox-torcharrow.sh / -COPY setup-helper-functions.sh / +COPY scripts/setup-velox-torcharrow.sh / +COPY scripts/setup-helper-functions.sh / RUN mkdir build && ( cd build && CPU_TARGET="$cpu_target" bash /setup-velox-torcharrow.sh ) && rm -rf build