Skip to content

Commit

Permalink
standardize repo root as context root
Browse files Browse the repository at this point in the history
  • Loading branch information
assignUser committed Dec 8, 2023
1 parent 685e98b commit 32d307f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions scripts/check-container.dockfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions scripts/circleci-container.dockfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions scripts/velox-torcharrow-container.dockfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 32d307f

Please sign in to comment.