-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Trying to pin the LLVM Version to LLVM 9 * Install LLVM@9 from Brew * Pin the brew version too. * Update macOS Build Image * Dump Toolchain Version on Build Get version information for `clang` and `rustc`. Clang is used for linking so knwing the LLVM Version it is using is useful. * Update Ubuntu Base Box * Ubuntu 20 * Add LLVM 9 to Path on Linux
- Loading branch information
1 parent
0998848
commit 4b78bdf
Showing
5 changed files
with
20 additions
and
24 deletions.
There are no files selected for viewing
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,11 +1,11 @@ | ||
FROM ubuntu:18.04 | ||
RUN apt-get update && \ | ||
apt-get install -y curl gnupg2 && \ | ||
curl -sS https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - | ||
COPY llvm.list /etc/apt/sources.list.d/ | ||
FROM ubuntu:20.04 | ||
RUN apt-get update && \ | ||
apt-get install -y wget curl gnupg2 lsb-release software-properties-common && \ | ||
curl -O https://apt.llvm.org/llvm.sh && \ | ||
chmod +x llvm.sh && \ | ||
./llvm.sh 9 && \ | ||
apt-get install -y sudo && \ | ||
apt-get install -y python3 && \ | ||
apt-get install -y clang binutils && \ | ||
apt-get install -y llvm-9-dev && \ | ||
apt-get install -y clang binutils && \ | ||
apt-get install -y zlib1g-dev |
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 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