[CHORE:DOCS] add contribution.md #3
This file contains hidden or 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: "inLimbo CI / Arch Linux Build (x86-64 arch - GCC)" | |
| on: | |
| push: | |
| branches: [ "develop" ] | |
| pull_request: | |
| branches: [ "develop" ] | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: archlinux:latest | |
| steps: | |
| - name: Update Pacman | |
| run: | | |
| pacman -Syu --noconfirm | |
| pacman -S --noconfirm sudo git | |
| - name: Checkout repository with submodules | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Install dependencies | |
| run: | | |
| xargs -a ci/pacman/packages.txt pacman -S --noconfirm | |
| - name: Build Release Version of inLimbo (x86-64 arch) - GCC | |
| run: | | |
| make buildx | |
| - name: Build Debug Version of inLimbo (x86-64 arch) - GCC | |
| run: | | |
| make init-dep-backtrace | |
| make buildx-dbg |