mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-23 21:14:37 +00:00
24 lines
568 B
YAML
24 lines
568 B
YAML
name: Rocky installation test
|
|
|
|
on: [workflow_dispatch]
|
|
|
|
jobs:
|
|
install:
|
|
name: Test installation on Rocky 9
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: rockylinux:8
|
|
options: --privileged --mount type=bind, source=/, target=/
|
|
steps:
|
|
- name: check distro
|
|
run: cat /etc/os-release
|
|
- run: dnf install -y sudo
|
|
- name: free up storage
|
|
run: |
|
|
df -h
|
|
sudo rm -rf /usr/local/lib/android
|
|
- uses: actions/checkout@v4
|
|
- name: install
|
|
run: ./bin/wally-tool-chain-install.sh
|
|
|