-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support remote build execution on main and read-only remote cache on …
…PRs (#1277)
- Loading branch information
1 parent
1b38a64
commit 2f9fd8b
Showing
4 changed files
with
129 additions
and
7 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
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Copyright 2022-2024 The NativeLink Authors. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
FROM ubuntu:22.04@sha256:f9d633ff6640178c2d0525017174a688e2c1aef28f0a0130b26bd5554491f0da | ||
|
||
# Set shell to bash and enable pipefail | ||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
# Get Ubuntu packages | ||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \ | ||
gcc=4:11.2.0-1ubuntu1 \ | ||
g++=4:11.2.0-1ubuntu1 \ | ||
python3=3.10.6-1~22.04 \ | ||
python3-minimal=3.10.6-1~22.04 \ | ||
libpython3-stdlib=3.10.6-1~22.04 \ | ||
curl=7.81.0-1ubuntu1.17 \ | ||
ca-certificates=20230311ubuntu0.22.04.1 \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Get Rust | ||
RUN curl --proto "=https" --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.79.0 | ||
|
||
RUN echo "source \"$HOME/.cargo/env\"" >> "$HOME/.bashrc" |
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,32 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -xeuo pipefail | ||
|
||
ECR=${ECR:?Error: ECR is not set} | ||
ECR_PROFILE=${ECR_PROFILE:?Error: ECR_PROFILE is not set} | ||
ECR_USER=${ECR_USER:?Error: ECR_USER is not set} | ||
ECR_REGION=${ECR_REGION:?Error: ECR_REGION is not set} | ||
BUILDX_NO_CACHE=${BUILDX_NO_CACHE:-true} | ||
|
||
function ecr_login() { | ||
aws ecr get-login-password --profile ${ECR_PROFILE} --region ${ECR_REGION} | docker login --username ${ECR_USER} --password-stdin ${ECR}.dkr.ecr.${ECR_REGION}.amazonaws.com | ||
} | ||
|
||
# Check OS and calculate the SHA256 hash of the Dockerfile | ||
if [[ "$OSTYPE" == "linux-gnu"* ]]; then | ||
IMAGE_TAG=$(sha256sum 'Dockerfile' | awk '{print $1}') | ||
elif [[ "$OSTYPE" == "darwin"* ]]; then | ||
IMAGE_TAG=$(shasum -a 256 'Dockerfile' | awk '{print $1}') | ||
else | ||
echo "Unsupported OS" | ||
exit 1 | ||
fi | ||
|
||
# Build the Docker image and tag it with the hash | ||
docker buildx build --no-cache=${BUILDX_NO_CACHE} --platform linux/amd64 -t "${ECR}.dkr.ecr.${ECR_REGION}.amazonaws.com/nativelink-rbe:$IMAGE_TAG" -f 'Dockerfile' . | ||
|
||
ecr_login | ||
docker push ${ECR}.dkr.ecr.${ECR_REGION}.amazonaws.com/nativelink-rbe:$IMAGE_TAG | ||
|
||
# Output the tag of the built image | ||
echo "Docker image tagged as ${ECR}.dkr.ecr.${ECR_REGION}.amazonaws.com/nativelink-rbe:$IMAGE_TAG" |