expuss2000 is creating the .deb package #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |