feat: CRW-4582 switch to ubi8 minimal downstream w/ openssl installed… #80
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
# | |
# Copyright (c) 2019-2021 Red Hat, Inc. | |
# This program and the accompanying materials are made | |
# available under the terms of the Eclipse Public License 2.0 | |
# which is available at https://www.eclipse.org/legal/epl-2.0/ | |
# | |
# SPDX-License-Identifier: EPL-2.0 | |
# | |
# Contributors: | |
# Red Hat, Inc. - initial API and implementation | |
# | |
name: Machine Exec Next Build | |
on: | |
workflow_dispatch: | |
inputs: | |
push: | |
branches: [ main ] | |
jobs: | |
build-push: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout che-machine-exec source code | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to quay.io | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_PASSWORD }} | |
registry: quay.io | |
- id: vars | |
shell: bash | |
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
- name: Build and push both short SHA tag and next tag | |
uses: docker/build-push-action@v3 | |
with: | |
file: build/dockerfiles/Dockerfile | |
platforms: linux/amd64,linux/ppc64le,linux/arm64 | |
push: true | |
tags: | | |
quay.io/eclipse/che-machine-exec:next | |
quay.io/eclipse/che-machine-exec:${{ steps.vars.outputs.sha_short }} | |
travis-build: | |
runs-on: ubuntu-22.04 | |
continue-on-error: true | |
steps: | |
- name: Trigger build on Travis CI | |
run: | | |
body="{ | |
\"request\":{ | |
\"branch\":\"main\" | |
}}" | |
curl -s -X POST \ | |
-H "Content-Type: application/json" \ | |
-H "Accept: application/json" \ | |
-H "Travis-API-Version: 3" \ | |
-H "Authorization: token ${{ secrets.TRAVIS_TOKEN }}" \ | |
-d "$body" \ | |
https://api.travis-ci.com/repo/eclipse-che%2Fche-machine-exec/requests |