-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI/CD - add
.deb
package building workflow
- Loading branch information
Showing
3 changed files
with
113 additions
and
81 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Build deb package (Ubuntu 24.04) | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
Ubuntu: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Clone Tree | ||
uses: actions/checkout@v1 | ||
with: | ||
fetch-depth: 1 | ||
- name: Install Dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y \ | ||
g++ ninja-build \ | ||
libgtk2.0-dev \ | ||
libopenal-dev \ | ||
libopenvr-dev \ | ||
libgl-dev \ | ||
libconfig++-dev libconfig-dev \ | ||
libxpm-dev \ | ||
libavcodec-dev libavdevice-dev libavformat-dev libavutil-dev libswscale-dev \ | ||
build-essential devscripts | ||
- name: Compile | ||
run: | | ||
./distribution/buildDebSrc.sh | ||
#- name: Upload artifacts | ||
# uses: actions/upload-artifact@v4 | ||
# with: | ||
# name: sview-debpackage | ||
# path: distribution/temp |
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
This file was deleted.
Oops, something went wrong.