env: LOCAL_REGISTRY: registry.wimill.xyz REGISTRY: ghcr.io ECR_REGISTRY: 976079455550.dkr.ecr.us-east-1.amazonaws.com IMAGE_NAME: ${{ github.repository }} name: Build and push docker image on: push: branches: [main] tags: ["*"] concurrency: group: ${{ github.ref }} cancel-in-progress: true permissions: contents: read id-token: write packages: write jobs: build: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 with: fetch-depth: 0 # - name: Set up Docker Buildx # uses: docker/setup-buildx-action@v2 - uses: depot/setup-action@v1 - name: Login to registry uses: docker/login-action@v2 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Docker meta id: meta-public uses: docker/metadata-action@v4 with: images: | ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} tags: | type=ref,event=branch type=ref,event=pr type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} - name: Build and push publicly uses: depot/build-push-action@v1 with: context: . platforms: linux/amd64,linux/arm64 push: true tags: | ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest ${{ steps.meta-public.outputs.tags }} labels: | ${{ steps.meta-public.outputs.labels }} org.opencontainers.image.licenses=AGPLv3 build_ee: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 with: fetch-depth: 0 # - name: Set up Docker Buildx # uses: docker/setup-buildx-action@v2 - uses: depot/setup-action@v1 - name: Docker meta id: meta-ee-public uses: docker/metadata-action@v4 with: images: | ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-ee tags: | type=ref,event=branch type=ref,event=pr type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} - name: Login to registry uses: docker/login-action@v2 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push publicly ee uses: depot/build-push-action@v1 with: context: . push: true build-args: | features=enterprise nsjail=true tags: | ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-ee:latest ${{ steps.meta-ee-public.outputs.tags }} labels: | ${{ steps.meta-ee-public.outputs.labels }} org.opencontainers.image.licenses=Windmill-Enterprise-License # disabled until we make it 100% reliable and add more meaningful tests # playwright: # runs-on: [self-hosted, new] # needs: [build] # services: # postgres: # image: postgres # env: # POSTGRES_DB: windmill # POSTGRES_USER: admin # POSTGRES_PASSWORD: changeme # ports: # - 5432:5432 # options: >- # --health-cmd pg_isready # --health-interval 10s # --health-timeout 5s # --health-retries 5 # steps: # - uses: actions/checkout@v3 # - name: "Docker" # run: echo "::set-output name=id::$(docker run --network=host --rm -d -p 8000:8000 --privileged -it -e DATABASE_URL=postgres://admin:changeme@localhost:5432/windmill -e BASE_INTERNAL_URL=http://localhost:8000 ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest)" # id: docker-container # - uses: actions/setup-node@v3 # with: # node-version: 16 # - name: "Playwright run" # timeout-minutes: 2 # run: cd frontend && npm ci @playwright/test && npx playwright install && export BASE_URL=http://localhost:8000 && npm run test # - name: "Clean up" # run: docker kill ${{ steps.docker-container.outputs.id }} # if: always() publish_privately_heavy: needs: [build_ee] runs-on: [self-hosted, new] steps: - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Docker meta id: meta-heavy uses: docker/metadata-action@v4 with: images: | ${{ env.ECR_REGISTRY }}/${{ env.IMAGE_NAME }} tags: | type=ref,event=branch type=ref,event=pr type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} type=sha - name: Login to ECR if: github.event_name != 'pull_request' uses: docker/login-action@v2 with: registry: ${{ env.ECR_REGISTRY }} username: ${{ secrets.AWS_ACCESS_KEY_ID }} password: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - name: Login to registry uses: docker/login-action@v2 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push privately uses: docker/build-push-action@v4 if: github.event_name != 'pull_request' with: context: . push: true file: ./docker/DockerfileHeavy tags: | ${{ steps.meta-heavy.outputs.tags }} labels: ${{ steps.meta-heavy.outputs.labels }} cache-from: type=registry,ref=${{ env.LOCAL_REGISTRY }}/${{ env.IMAGE_NAME }}-heavy:buildcache cache-to: type=registry,ref=${{ env.LOCAL_REGISTRY }}/${{ env.IMAGE_NAME }}-heavy:buildcache,mode=max publish_privately_helm: runs-on: [self-hosted, new] needs: [build_ee] if: github.event_name != 'pull_request' steps: - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Login to registry uses: docker/login-action@v2 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Login to ECR if: github.event_name != 'pull_request' uses: docker/login-action@v2 with: registry: ${{ env.ECR_REGISTRY }} username: ${{ secrets.AWS_ACCESS_KEY_ID }} password: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - name: Build and push privately uses: docker/build-push-action@v4 if: github.event_name != 'pull_request' with: context: . push: true file: ./docker/DockerfileHelm tags: | ${{ env.ECR_REGISTRY }}/${{ env.IMAGE_NAME }}:helm cache-from: type=registry,ref=${{ env.LOCAL_REGISTRY }}/${{ env.IMAGE_NAME }}-helm:buildcache cache-to: type=registry,ref=${{ env.LOCAL_REGISTRY }}/${{ env.IMAGE_NAME }}-helm:buildcache,mode=max