Change BASE_IMAGE to Fedora 39 #55
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: Build Tests | |
on: [push, pull_request] | |
env: | |
COPR_REPO: ${{ vars.COPR_REPO || '@pki/11.4' }} | |
jobs: | |
build-test: | |
name: Build Test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: | |
- 'fedora:39' | |
container: ${{ matrix.os }} | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
dnf install -y dnf-plugins-core rpm-build | |
dnf copr enable -y $COPR_REPO | |
dnf builddep -y --spec idm-console-framework.spec | |
- name: Build IDM Console Framework | |
run: ./build.sh |