mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-03 02:05:21 +00:00
22 lines
491 B
YAML
22 lines
491 B
YAML
name: Installation test
|
|
|
|
on: [workflow_dispatch]
|
|
|
|
jobs:
|
|
install:
|
|
name: Test installation on Ubuntu 22.04LTS
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: sudo apt update
|
|
- run: sudo apt upgrade -y
|
|
- run: sudo apt install -y libunwind-dev
|
|
- run: git clone --recurse-submodules -j 4 https://github.com/qemu/qemu
|
|
- name: install
|
|
run: |
|
|
pwd
|
|
ls
|
|
sudo ./bin/wally-tool-chain-install.sh
|
|
|