Skip to content

Several QoL improvments, particularly docs (fixes #33) #6

Several QoL improvments, particularly docs (fixes #33)

Several QoL improvments, particularly docs (fixes #33) #6

Workflow file for this run

name: Build-Debug
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install LLVM
run: sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
- name: Set up Android NDK r23b
run: |
curl -fLO https://dl.google.com/android/repository/android-ndk-r23b-linux.zip
unzip -qd . android-ndk-r23b-linux.zip
- name: Build
run: |
git submodule update --init --recursive
sed -i '/COMPILE_DEFINITIONS "MyRelease"/d' CMakeLists.txt
mkdir build
cd build
cmake ..
make
- name: Set outputs
id: vars
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Wrapper.Debug.x86_64.${{ steps.vars.outputs.sha_short }}
include-hidden-files: true
path: |
rootfs
wrapper
Dockerfile