Skip to content

expuss2000 is creating the .deb package #9

expuss2000 is creating the .deb package

expuss2000 is creating the .deb package #9

Workflow file for this run

name: .deb package
run-name: ${{ github.actor }} is creating the .deb package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install cmake gcc-riscv64-unknown-elf libelf-dev libsigc++-2.0-dev libboost-dev libboost-program-options-dev qt6-base-dev libglx-dev libgl1-mesa-dev
- name: Create .deb
run: |
mkdir build
cd build
cmake ..
cpack -G DEB
- uses: actions/upload-artifact@v4
with:
name: uriscv
path: build/*.deb