2024-07-05 03:52:52 +00:00
|
|
|
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
|
2024-07-05 04:11:11 +00:00
|
|
|
- run: sudo apt update
|
|
|
|
- run: sudo apt upgrade -y
|
|
|
|
- run: sudo apt install -y libunwind-dev
|
2024-07-05 14:03:15 +00:00
|
|
|
- run: git clone --recurse-submodules -j 4 https://github.com/qemu/qemu
|
2024-07-05 03:52:52 +00:00
|
|
|
- name: install
|
2024-07-05 03:55:13 +00:00
|
|
|
run: |
|
|
|
|
pwd
|
2024-07-05 03:56:24 +00:00
|
|
|
ls
|
|
|
|
sudo ./bin/wally-tool-chain-install.sh
|
2024-07-05 03:52:52 +00:00
|
|
|
|