Skip to content

Rocky linux 9

Rocky linux 9 #142

Workflow file for this run

---
name: Build
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [rockylinux9]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install shunit2
run: sudo apt-get install -y shunit2
- name: Build walkthroughs
run: |
cd linux
./autogenerate.sh
- name: Build docker image
run: |
cd linux/test
./docker-build.sh $ENV
./test_services.sh $ENV
env:
ENV: ${{ matrix.os }}