mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-24 05:24:49 +00:00
21 lines
379 B
YAML
21 lines
379 B
YAML
name: Installation test
|
|
|
|
on: [workflow_dispatch]
|
|
|
|
jobs:
|
|
install:
|
|
name: Test installation on Rocky 9
|
|
runs-on: ubuntu-latest
|
|
container: rockylinux:8
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
steps:
|
|
- run: df -h
|
|
- run: dnf install -y sudo
|
|
- uses: actions/checkout@v4
|
|
- name: install
|
|
run: ./bin/wally-tool-chain-install.sh
|
|
|