Openjdk 2384 singleton jdk alternatives #253
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: OpenJDK 11 Runtime Image CI | |
on: [push, pull_request] | |
env: | |
LANG: en_US.UTF-8 | |
CEKIT_VERSION: 4.6.0 | |
S2I_URI: https://github.com/openshift/source-to-image/releases/download/v1.3.1/source-to-image-v1.3.1-a5a77147-linux-amd64.tar.gz | |
jobs: | |
openjdkci: | |
name: OpenJDK Runtime Build and Test | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Verify latest UBI image is present | |
run: | | |
docker pull registry.access.redhat.com/ubi8/ubi-minimal:latest | |
docker image ls | grep ubi8 | |
- name: Setup required system packages | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y virtualenv libkrb5-dev | |
- name: Setup virtualenv and install cekit and required packages | |
run: | | |
mkdir ~/cekit${{ env.CEKIT_VERSION }} | |
virtualenv -p python3 ~/cekit${{ env.CEKIT_VERSION }} | |
. ~/cekit${{ env.CEKIT_VERSION }}/bin/activate | |
pip3 install cekit==${{ env.CEKIT_VERSION }} docker docker-squash odcs behave lxml | |
- name: Build | |
run: | | |
. ~/cekit${{ env.CEKIT_VERSION }}/bin/activate | |
cekit -v --descriptor ubi8-openjdk-11-runtime.yaml build docker | |
docker image ls | |
# even though we don't run any S2I tests for the runtime images, the test suite | |
# will fail to start if the s2i binary is not present. | |
- name: install s2i binary | |
run: | | |
echo ===== Installing s2i from ${{ env.S2I_URL }} ===== | |
mkdir /tmp/s2i/ && cd /tmp/s2i/ | |
wget ${{ env.S2I_URI }} | |
tar xvf source-to-image*.gz | |
sudo mv s2i /usr/bin | |
which s2i | |
s2i version | |
- name: Behave Tests | |
run: | | |
. ~/cekit${{ env.CEKIT_VERSION }}/bin/activate | |
cekit -v --descriptor ubi8-openjdk-11-runtime.yaml test behave |