Skip to content

Create workspace devfile #1086

Create workspace devfile

Create workspace devfile #1086

Workflow file for this run

#
# Copyright 2020-2022 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Check registry build
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
path: registry-repo
- name: Setup Go environment
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: 1.18
- name: Check if devfile registry build is working
run: bash registry-repo/.ci/build.sh
odov3-deploy:
name: Test odo V3 deploy
runs-on: ubuntu-latest
env:
ODO_VERSION: v3.15.0
steps:
- name: Check out code
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Download odo V3
run: curl -L https://developers.redhat.com/content-gateway/rest/mirror/pub/openshift-v4/clients/odo/${{ env.ODO_VERSION }}/odo-linux-amd64 -o odo
- name: Verify binary
run: curl -L https://developers.redhat.com/content-gateway/rest/mirror/pub/openshift-v4/clients/odo/${{ env.ODO_VERSION }}/odo-linux-amd64.sha256 -o odo.sha256 && echo "$(<odo.sha256) odo" | shasum -a 256 --check
- name: Setup Minikube
uses: manusa/actions-setup-minikube@3856c6fa039819f1c8e7e248b1fc5a8564e354c9 # v2.9.0
with:
minikube version: 'v1.31.2'
kubernetes version: 'v1.26.0'
driver: 'docker'
github token: ${{ secrets.GITHUB_TOKEN }}
start args: '--addons=ingress --memory 4096 --cpus 2'
- name: Run deploy
run: odo deploy --var hostName=devfile-registry.$(minikube ip).nip.io
- name: Check deployment
run: kubectl wait community-devfile-registry --for=condition=Available --timeout=600s
- name: Cleanup deployment
run: odo delete component --name community-devfile-registry