desperate to trigger #1
Workflow file for this run
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
name: Docker BUILD | ||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
- 'has_secret' | ||
pull_request: | ||
types: [synchronize, opened, reopened, ready_for_review] | ||
jobs: | ||
jobs: | ||
check-secrets: | ||
uses: ./.github/workflows/check-secrets.yml | ||
with: | ||
secret_name: 'DOCKERHUB_USER' | ||
docker-build: | ||
needs: check-secrets | ||
if: needs.check-secrets.outputs.has-secrets == 'true' | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
target: ["dev", "lean", "lean310", "websocket", "dockerize"] | ||
platform: ["linux/amd64", "linux/arm64"] | ||
exclude: | ||
# disabling because slow! no python wheels for arm/py39 and | ||
# QEMU is slow! | ||
- target: "dev" | ||
platform: "linux/arm64" | ||
- target: "lean" | ||
platform: "linux/arm64" | ||
fail-fast: false | ||
steps: | ||
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Build Docker Image | ||
shell: bash | ||
env: | ||
DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USER }} | ||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} | ||
run: | | ||
./scripts/docker_build_push.sh "" ${{ matrix.target }} ${{ matrix.platform }} | ||
ephemeral-docker-build: | ||
needs: check-secrets | ||
if: needs.check-secrets.outputs.has-secrets == 'true' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )" | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Build ephemeral env image | ||
if: github.event_name == 'pull_request' | ||
run: | | ||
mkdir -p ./build | ||
echo ${{ github.sha }} > ./build/SHA | ||
echo ${{ github.event.pull_request.number }} > ./build/PR-NUM | ||
docker buildx build --target ci \ | ||
--load \ | ||
--cache-from=type=registry,ref=apache/superset:lean \ | ||
-t ${{ github.sha }} \ | ||
-t "pr-${{ github.event.pull_request.number }}" \ | ||
--platform linux/amd64 \ | ||
--label "build_actor=${GITHUB_ACTOR}" \ | ||
. | ||
docker save ${{ github.sha }} | gzip > ./build/${{ github.sha }}.tar.gz | ||
- name: Upload build artifacts | ||
if: github.event_name == 'pull_request' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: build | ||
path: build/ |