-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial docker image creation workflows.
- Loading branch information
Showing
22 changed files
with
310 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: buildpack:emscripten | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/buildpack-emscripten.yml' | ||
- 'scripts/docker/buildpack/Dockerfile.emscripten' | ||
|
||
jobs: | ||
build: | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
DOCKER_REPOSITORY: docker.pkg.github.com/${{ github.repository }} | ||
IMAGE_NAME: buildpack | ||
IMAGE_VARIANT: emscripten | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Upgrade ${{ env.IMAGE_NAME }}-${{ env.IMAGE_VARIANT }} | ||
run: | | ||
echo "${GITHUB_TOKEN}" | docker login docker.pkg.github.com -u "${GITHUB_ACTOR}" --password-stdin | ||
scripts/ci/docker_upgrade.sh | ||
docker logout docker.pkg.github.com | ||
- name: comment PR | ||
uses: aarlt/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
msg: "`${{ env.DOCKER_IMAGE }} ${{ env.DOCKER_REPO_DIGEST }}`." | ||
check_for_duplicate_msg: false # OPTIONAL |
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,34 @@ | ||
name: buildpack:ubuntu1604.clang.ossfuzz | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/buildpack-ubuntu1604.clang.ossfuzz.yml' | ||
- 'scripts/docker/buildpack/Dockerfile.ubuntu1604.clang.ossfuzz' | ||
|
||
jobs: | ||
build: | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
DOCKER_REPOSITORY: docker.pkg.github.com/${{ github.repository }} | ||
IMAGE_NAME: buildpack | ||
IMAGE_VARIANT: ubuntu1604.clang.ossfuzz | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Upgrade ${{ env.IMAGE_NAME }}-${{ env.IMAGE_VARIANT }} | ||
run: | | ||
echo "${GITHUB_TOKEN}" | docker login docker.pkg.github.com -u "${GITHUB_ACTOR}" --password-stdin | ||
scripts/ci/docker_upgrade.sh | ||
docker logout docker.pkg.github.com | ||
- name: comment PR | ||
uses: aarlt/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
msg: "`${{ env.DOCKER_IMAGE }} ${{ env.DOCKER_REPO_DIGEST }}`." | ||
check_for_duplicate_msg: false # OPTIONAL |
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,34 @@ | ||
name: buildpack:ubuntu1804 | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/buildpack-ubuntu1804.yml' | ||
- 'scripts/docker/buildpack/Dockerfile.ubuntu1804' | ||
|
||
jobs: | ||
build: | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
DOCKER_REPOSITORY: docker.pkg.github.com/${{ github.repository }} | ||
IMAGE_NAME: buildpack | ||
IMAGE_VARIANT: ubuntu1804 | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Upgrade ${{ env.IMAGE_NAME }}-${{ env.IMAGE_VARIANT }} | ||
run: | | ||
echo "${GITHUB_TOKEN}" | docker login docker.pkg.github.com -u "${GITHUB_ACTOR}" --password-stdin | ||
scripts/ci/docker_upgrade.sh | ||
docker logout docker.pkg.github.com | ||
- name: comment PR | ||
uses: aarlt/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
msg: "`${{ env.DOCKER_IMAGE }} ${{ env.DOCKER_REPO_DIGEST }}`." | ||
check_for_duplicate_msg: false # OPTIONAL |
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,36 @@ | ||
name: buildpack:ubuntu2004.clang | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/buildpack-ubuntu2004.clang.yml' | ||
- 'scripts/docker/buildpack/Dockerfile.ubuntu2004.clang' | ||
|
||
jobs: | ||
build: | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
DOCKER_REPOSITORY: docker.pkg.github.com/${{ github.repository }} | ||
IMAGE_NAME: buildpack | ||
IMAGE_VARIANT: ubuntu2004.clang | ||
CC: clang | ||
CXX: clang++ | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Upgrade ${{ env.IMAGE_NAME }}-${{ env.IMAGE_VARIANT }} | ||
run: | | ||
echo "${GITHUB_TOKEN}" | docker login docker.pkg.github.com -u "${GITHUB_ACTOR}" --password-stdin | ||
scripts/ci/docker_upgrade.sh | ||
docker logout docker.pkg.github.com | ||
- name: comment PR | ||
uses: aarlt/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
msg: "`${{ env.DOCKER_IMAGE }} ${{ env.DOCKER_REPO_DIGEST }}`." | ||
check_for_duplicate_msg: false # OPTIONAL |
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,33 @@ | ||
name: buildpack:ubuntu2004 | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/buildpack-ubuntu2004.yml' | ||
- 'scripts/docker/buildpack/Dockerfile.ubuntu2004' | ||
jobs: | ||
build: | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
DOCKER_REPOSITORY: docker.pkg.github.com/${{ github.repository }} | ||
IMAGE_NAME: buildpack | ||
IMAGE_VARIANT: ubuntu2004 | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Upgrade ${{ env.IMAGE_NAME }}-${{ env.IMAGE_VARIANT }} | ||
run: | | ||
echo "${GITHUB_TOKEN}" | docker login docker.pkg.github.com -u "${GITHUB_ACTOR}" --password-stdin | ||
scripts/ci/docker_upgrade.sh | ||
docker logout docker.pkg.github.com | ||
- name: comment PR | ||
uses: aarlt/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
msg: "`${{ env.DOCKER_IMAGE }} ${{ env.DOCKER_REPO_DIGEST }}`." | ||
check_for_duplicate_msg: false # OPTIONAL |
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 |
---|---|---|
|
@@ -32,7 +32,7 @@ prerelease.txt | |
|
||
# Build directory | ||
build/ | ||
build*/ | ||
/build*/ | ||
emscripten_build/ | ||
docs/_build | ||
__pycache__ | ||
|
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,22 @@ | ||
#!/usr/bin/env bash | ||
set -ex | ||
|
||
ROOTDIR="$(dirname "$0")/../.." | ||
cd "${ROOTDIR}" | ||
|
||
# shellcheck disable=SC2166 | ||
if [ "$CIRCLE_BRANCH" = release -o -n "$CIRCLE_TAG" -o -n "$FORCE_RELEASE" ]; then echo -n >prerelease.txt; else date -u +"nightly.%Y.%-m.%-d" >prerelease.txt; fi | ||
if [ -n "$CIRCLE_SHA1" ] | ||
then | ||
echo -n "$CIRCLE_SHA1" >commit_hash.txt | ||
fi | ||
|
||
mkdir -p build | ||
cd build | ||
|
||
# shellcheck disable=SC2166 | ||
[ -n "$COVERAGE" -a "$CIRCLE_BRANCH" != release -a -z "$CIRCLE_TAG" ] && CMAKE_OPTIONS="$CMAKE_OPTIONS -DCOVERAGE=ON" | ||
|
||
# shellcheck disable=SC2086 | ||
cmake .. -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE:-Release}" $CMAKE_OPTIONS -G "Unix Makefiles" | ||
make -j4 |
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,14 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
ROOTDIR="$(dirname "$0")/../.." | ||
BUILDDIR="${ROOTDIR}/build" | ||
|
||
mkdir -p "${BUILDDIR}" | ||
cd "${BUILDDIR}" | ||
|
||
protoc --proto_path=../test/tools/ossfuzz yulProto.proto --cpp_out=../test/tools/ossfuzz | ||
protoc --proto_path=../test/tools/ossfuzz abiV2Proto.proto --cpp_out=../test/tools/ossfuzz | ||
protoc --proto_path=../test/tools/ossfuzz solProto.proto --cpp_out=../test/tools/ossfuzz | ||
cmake .. -DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE:-Release}" -DCMAKE_TOOLCHAIN_FILE=../cmake/toolchains/libfuzzer.cmake | ||
make ossfuzz ossfuzz_proto ossfuzz_abiv2 -j4 |
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 @@ | ||
../../scripts/travis-emscripten/build_emscripten.sh |
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 @@ | ||
build_ossfuzz.sh |
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 @@ | ||
build.sh |
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 @@ | ||
build.sh |
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 @@ | ||
build.sh |
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,81 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
check_parameters() { | ||
echo "-- check_parameters" | ||
|
||
if [ -z "${IMAGE_NAME}" ] || [ -z "${IMAGE_VARIANT}" ] || [ -z "${DOCKER_REPOSITORY}" ]; then | ||
echo "\${IMAGE_NAME}, \${IMAGE_VARIANT} and \${DOCKER_REPOSITORY} need to be defined." | ||
|
||
false | ||
fi | ||
} | ||
|
||
check_version() { | ||
echo "-- check_version" | ||
|
||
git fetch | ||
git branch | ||
DOCKERFILE="scripts/docker/${IMAGE_NAME}/Dockerfile.${IMAGE_VARIANT}" | ||
PREV_VERSION=$(git diff origin/develop HEAD -- "${DOCKERFILE}" | grep -e "-LABEL version=\".*\"" | awk -F"\"" '{ print $2 }') | ||
NEXT_VERSION=$(git diff origin/develop HEAD -- "${DOCKERFILE}" | grep -e "+LABEL version=\".*\"" | awk -F"\"" '{ print $2 }') | ||
|
||
if [ -z "${NEXT_VERSION}" ]; then | ||
echo "" | ||
echo "ERROR: No version label defined in Dockerfile. You may need to add 'LABEL version' in '${DOCKERFILE}'. Aborting." | ||
echo "" | ||
|
||
false | ||
fi | ||
|
||
if [ -z "${PREV_VERSION}" ]; then | ||
PREV_VERSION=0 | ||
echo "" | ||
echo "WARNING: no previous version found. Will set \$PREV_VERSION = 0." | ||
echo "" | ||
fi | ||
|
||
if [[ $((PREV_VERSION + 1)) != $((NEXT_VERSION)) ]]; then | ||
echo "" | ||
echo "ERROR: Version label in Dockerfile was not incremented. You may need to change 'LABEL version' in '${DOCKERFILE}'. Aborting." | ||
echo "" | ||
|
||
false | ||
fi | ||
} | ||
|
||
build_docker() { | ||
echo "-- build_docker" | ||
|
||
docker build "scripts/docker/${IMAGE_NAME}" --file "scripts/docker/${IMAGE_NAME}/Dockerfile.${IMAGE_VARIANT}" --tag "${IMAGE_NAME}" | ||
} | ||
|
||
test_docker() { | ||
echo "-- test_docker @ '${PWD}'" | ||
|
||
docker run -v "${PWD}:/root/project" "${IMAGE_NAME}" "/root/project/scripts/ci/docker_test_${IMAGE_VARIANT}.sh" | ||
} | ||
|
||
push_docker() { | ||
echo "-- push_docker" | ||
|
||
VERSION=$(docker inspect --format='{{.Config.Labels.version}}' "${IMAGE_NAME}") | ||
DOCKER_IMAGE_ID="${DOCKER_REPOSITORY}/${IMAGE_NAME}-${IMAGE_VARIANT}" | ||
|
||
docker tag "${IMAGE_NAME}" "${DOCKER_IMAGE_ID}:${VERSION}" | ||
docker push "${DOCKER_IMAGE_ID}:${VERSION}" | ||
|
||
REPO_DIGEST=$(docker inspect --format='{{.RepoDigests}}' "${DOCKER_IMAGE_ID}:${VERSION}") | ||
|
||
docker tag "${IMAGE_NAME}" "${DOCKER_IMAGE_ID}:latest" | ||
docker push "${DOCKER_IMAGE_ID}:latest" | ||
|
||
echo "::set-env name=DOCKER_IMAGE::${DOCKER_IMAGE_ID}:${VERSION}" | ||
echo "::set-env name=DOCKER_REPO_DIGEST::${REPO_DIGEST}" | ||
} | ||
|
||
check_parameters | ||
check_version | ||
build_docker | ||
test_docker | ||
push_docker |
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
Oops, something went wrong.