Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix linux-arm64 build release process #914

Merged
merged 1 commit into from
Jul 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile.release
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ FROM node:bullseye AS builder
WORKDIR /workerd

RUN apt-get update
RUN apt-get install -y libunwind-14 libc++abi1-14 libc++1-14 libc++-14-dev curl build-essential git lsb-release wget software-properties-common gnupg
RUN apt-get install -y curl build-essential git lsb-release wget software-properties-common gnupg

RUN wget https://apt.llvm.org/llvm.sh
RUN chmod +x llvm.sh
RUN ./llvm.sh 14
RUN ./llvm.sh 14 all
COPY . .

RUN echo "build:linux --action_env=CC=/usr/lib/llvm-14/bin/clang --action_env=CXX=/usr/lib/llvm-14/bin/clang++" >> .bazelrc
Expand Down
1 change: 1 addition & 0 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,7 @@ load("@rules_python//python:repositories.bzl", "python_register_toolchains")

python_register_toolchains(
name = "python3_11",
ignore_root_user_error = True,
# https://github.com/bazelbuild/rules_python/blob/main/python/versions.bzl
python_version = "3.11",
)
Expand Down