-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #265 from redhat-marketplace/release/2.4.0
Release/2.4.0
- Loading branch information
Showing
241 changed files
with
19,321 additions
and
8,730 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# .github/buildkitd.toml | ||
[worker.oci] | ||
max-parallelism = 4 |
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,56 @@ | ||
# Generated by internal/ci/ci_tool.cue; do not edit | ||
name: Build Bases | ||
on: | ||
workflow_dispatch: {} | ||
schedule: | ||
- cron: 0 0 * * * | ||
jobs: | ||
base: | ||
name: Build Base | ||
runs-on: ubuntu-20.04 | ||
env: | ||
GO_VERSION: 1.16.8 | ||
IMAGE_REGISTRY: quay.io/rh-marketplace | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.16.8 | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
with: | ||
image: tonistiigi/binfmt:qemu-v6.1.0 | ||
platforms: all | ||
- id: buildx | ||
name: Set up docker buildx | ||
uses: docker/setup-buildx-action@v1 | ||
with: | ||
config: .github/buildkitd.toml | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: quay.io/rh-marketplace | ||
username: ${{secrets['quayUser']}} | ||
password: ${{secrets['quayPassword']}} | ||
- id: build | ||
name: Build images | ||
run: make base/${{ matrix.command }} | ||
env: | ||
DOCKERBUILDXCACHE: /tmp/.buildx-cache | ||
PUSH: "false" | ||
- id: push | ||
name: Push images | ||
run: make base/${{ matrix.command }} | ||
env: | ||
DOCKERBUILDXCACHE: /tmp/.buildx-cache | ||
IMAGE_PUSH: "true" | ||
strategy: | ||
matrix: | ||
command: | ||
- base | ||
- data-service |
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.