-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade kinda Update elixir.yml Delete devcontainer.json add dockerfile add Update dev-requirements.txt Update dev-requirements.txt fix Update livebook.dockerfile Update livebook.dockerfile add Update arm_release.yml Update livebook.dockerfile Update livebook.dockerfile Update arm_release.yml add Update release.yml Revert "upgrade kinda" This reverts commit 04b0fb5. add Revert "add" This reverts commit 9b8ce19.
- Loading branch information
1 parent
98f4295
commit d2f1554
Showing
6 changed files
with
70 additions
and
35 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
mlir==20.0.0.2024112701+fad5ed6e; sys_platform != "linux" | ||
mlir==20.0.0.2024112701+cuda.fad5ed6e; sys_platform == "linux" | ||
mlir==20.0.0.2024120301+cuda.814ed93e; sys_platform == "linux" and platform_machine == "x86_64" | ||
mlir==20.0.0.2024120301+814ed93e; sys_platform != "linux" or platform_machine != "x86_64" | ||
--find-links https://github.com/makslevental/mlir-wheels/releases/expanded_assets/latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM ghcr.io/livebook-dev/livebook:0.14.5 | ||
RUN apt-get upgrade -y \ | ||
&& apt-get update \ | ||
&& apt-get install --no-install-recommends -y \ | ||
ninja-build \ | ||
python3-pip \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
# LLVM | ||
COPY ./dev-requirements.txt /src/dev-requirements.txt | ||
RUN python3 -m pip install -r /src/dev-requirements.txt && python3 -m pip cache purge | ||
RUN ln -s $(python3 -c 'import mlir;print(mlir.__path__[0])') /usr/local/mlir | ||
ENV PATH=/usr/local/mlir/bin:${PATH} | ||
RUN llvm-config --version | ||
# Zig | ||
RUN wget "https://ziglang.org/download/0.13.0/zig-linux-aarch64-0.13.0.tar.xz" -O "zig-linux.tar.xz" \ | ||
&& tar Jxvf "zig-linux.tar.xz" -C /usr/local \ | ||
&& mv /usr/local/zig-linux-aarch64-0.13.0 /usr/local/zig-linux \ | ||
&& rm "zig-linux.tar.xz" | ||
ENV PATH=/usr/local/zig-linux:${PATH} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
set -e | ||
export MIX_ENV=prod | ||
export ELIXIR_MAKE_CACHE_DIR=. | ||
mix deps.get | ||
mix elixir_make.precompile |