95 lines
3.2 KiB
YAML
95 lines
3.2 KiB
YAML
permissions:
|
|
actions: none
|
|
checks: none
|
|
contents: none
|
|
deployments: none
|
|
issues: none
|
|
packages: none
|
|
pull-requests: none
|
|
repository-projects: none
|
|
security-events: none
|
|
statuses: none
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'chromium version'
|
|
required: false
|
|
default: ''
|
|
|
|
env:
|
|
VERSION: ${{ github.event.inputs.version }}
|
|
|
|
name: Builds and pushes tagged image to DockerHub
|
|
jobs:
|
|
generate_build_deps:
|
|
name: Generate Build Deps
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Reclaiming disk space on / by removing dotnet/android/ghc
|
|
run: |
|
|
sudo rm -rf /usr/share/dotnet
|
|
sudo rm -rf /usr/local/lib/android
|
|
sudo rm -rf /opt/ghc
|
|
sudo apt-get remove google-cloud-sdk azure-cli hhvm google-chrome-stable \
|
|
firefox mysql-server-core-8.0 mono-devel mongodb-org-server podman mongodb-org-mongos \
|
|
powershell dotnet-runtime-3.1 dotnet-runtime-5.0 dotnet-sdk-3.1 dotnet-sdk-5.0
|
|
sudo apt-get autoremove
|
|
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: bromite-buildtools
|
|
fetch-depth: 1
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Check versions
|
|
shell: bash
|
|
run: |
|
|
if [ -z $VERSION ]; then
|
|
VERSION=$(curl -s https://omahaproxy.appspot.com/all.json | jq '.[] | select(.os | contains("win64")) | .versions[] | select(.channel | contains("stable")) | .current_version')
|
|
echo "BRANCH=$BRANCH" >> $GITHUB_ENV
|
|
fi
|
|
|
|
- name: Building build-deps container ${{ env.VERSION }}
|
|
shell: bash
|
|
run: |
|
|
IS_PRESENT=$(docker inspect --type=image uazo/build-deps:$VERSION > /dev/null ; echo $?)
|
|
if [ $IS_PRESENT -ne "0" ]; then
|
|
IS_PRESENT=$(docker manifest inspect uazo/build-deps:$VERSION > /dev/null ; echo $?)
|
|
if [ $IS_PRESENT -ne "0" ]; then
|
|
DOCKER_BUILDKIT=1 docker build -t uazo/build-deps:$VERSION \
|
|
--progress plain \
|
|
--build-arg VERSION=$VERSION \
|
|
--build-arg HTTP_PROXY="$PROXY_ADDR" \
|
|
--no-cache \
|
|
bromite-buildtools/images/build-deps/.
|
|
|
|
docker push uazo/build-deps:$VERSION
|
|
fi
|
|
fi
|
|
|
|
- name: Building chromium container ${{ env.VERSION }}
|
|
shell: bash
|
|
run: |
|
|
IS_PRESENT=$(docker inspect --type=image uazo/chromium:$VERSION > /dev/null ; echo $?)
|
|
if [ $IS_PRESENT -ne "0" ]; then
|
|
IS_PRESENT=$(docker manifest inspect uazo/chromium:$VERSION > /dev/null ; echo $?)
|
|
if [ $IS_PRESENT -ne "0" ]; then
|
|
DOCKER_BUILDKIT=1 docker build -t uazo/chromium:$VERSION \
|
|
--progress plain \
|
|
--build-arg VERSION=$VERSION \
|
|
--build-arg HTTP_PROXY="$PROXY_ADDR" \
|
|
bromite-buildtools/images/chr-source/.
|
|
|
|
docker push uazo/chromium:$VERSION
|
|
fi
|
|
fi
|
|
|