GLX Fix + reduced libraries in AppImage build script. (#712)
* Delete appimage-build-compat.sh * Delete appimage-build.sh * Delete .github/workflows/build-appimage.yml * Rename build-appimage-compat.yml to build-appimage.yml * Update build-appimage.yml * Add new build script * Update build-appimage.yml * Delete appimage-build.sh * Add files via upload * Delete appimage-build.sh * Add files via upload * Update README.md
This commit is contained in:
@@ -1,38 +0,0 @@
|
||||
# This workflow will build a golang project
|
||||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
|
||||
|
||||
name: Build AppImage-compat
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: '1.24'
|
||||
|
||||
- name: Install dependencies
|
||||
run: sudo apt update && sudo apt install libmpv-dev gcc libegl1-mesa-dev xorg-dev desktop-file-utils
|
||||
|
||||
- name: Build
|
||||
run: make build
|
||||
|
||||
- name: make appimage
|
||||
run: |
|
||||
chmod +x appimage-build-compat.sh
|
||||
./appimage-build-compat.sh
|
||||
|
||||
- name: upload artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Supersonic-compat.AppImage
|
||||
path: Supersonic-x86_64.AppImage
|
||||
@@ -1,7 +1,7 @@
|
||||
# This workflow will build a golang project
|
||||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
|
||||
|
||||
name: Build AppImage
|
||||
name: Build AppImage-compat
|
||||
|
||||
on:
|
||||
push:
|
||||
@@ -11,7 +11,7 @@ on:
|
||||
jobs:
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-24.04
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
@@ -21,7 +21,7 @@ jobs:
|
||||
go-version: '1.24'
|
||||
|
||||
- name: Install dependencies
|
||||
run: sudo apt update && sudo apt install libmpv-dev gcc libegl1-mesa-dev xorg-dev desktop-file-utils libmfx1 libdvdnav4
|
||||
run: sudo apt update && sudo apt install libmpv-dev gcc libegl1-mesa-dev xorg-dev desktop-file-utils
|
||||
|
||||
- name: Build
|
||||
run: make build
|
||||
|
||||
Reference in New Issue
Block a user