mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-24 05:24:49 +00:00
21 lines
413 B
YAML
21 lines
413 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
|
|
- name: install
|
|
run: |
|
|
pwd
|
|
ls
|
|
sudo ./bin/wally-tool-chain-install.sh
|
|
|