-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
45 additions
and
2 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
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,45 @@ | ||
name: main | ||
on: [push] | ||
jobs: | ||
build-appimage: | ||
runs-on: ubuntu:22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
run: apt-get update && apt-get install -y wget gcc g++ make pkg-config libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev libopengl-dev libglx-dev libglu1-mesa-dev freeglut3-dev libxxf86vm-dev | ||
|
||
# - name: Install Go | ||
# run: | | ||
# wget https://go.dev/dl/go1.22.3.linux-amd64.tar.gz | ||
# tar -C /usr/local -xzf go1.22.3.linux-amd64.tar.gz | ||
|
||
- name: Install capstone | ||
run: | | ||
cd /tmp | ||
wget -q -O capstone.tar.gz https://github.com/capstone-engine/capstone/archive/5.0.1.tar.gz | ||
tar xf capstone.tar.gz | ||
rm capstone.tar.gz | ||
cd capstone* | ||
CAPSTONE_ARCHS=arm ./make.sh install | ||
- name: Build libinfiniemu | ||
run: make -j$(nproc) libinfiniemu.o | ||
|
||
- name: Build raw-viewer | ||
run: | | ||
cd tools/raw-viewer | ||
/usr/local/go/bin/go build . | ||
- name: Build AppImage | ||
run: | | ||
wget -q -O appimagetool.AppImage https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage | ||
cd tools/raw-viewer | ||
mkdir -p AppDir/usr/bin AppDir/usr/lib | ||
cp raw-viewer AppDir/usr/bin | ||
cp /usr/lib/libcapstone.so.5 AppDir/usr/lib | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: InfiniEmu AppImage | ||
path: InfiniEmu-x86_64.AppImage | ||
if-no-files-found: error |