mirror of
https://github.com/Xeeynamo/sotn-decomp.git
synced 2024-11-23 04:59:41 +00:00
81c9212460
I noticed a few deprecation warnings so went through and updated all the "uses" dependencies to the latest.
32 lines
659 B
YAML
32 lines
659 B
YAML
name: Build Debug Module tool
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'config/**.txt'
|
|
- 'include/**'
|
|
- 'tools/sotn-debugmodule/**'
|
|
pull_request:
|
|
paths:
|
|
- 'config/**.txt'
|
|
- 'include/**'
|
|
- 'tools/sotn-debugmodule/**'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install requirements
|
|
run: sudo apt-get install gcc-mipsel-linux-gnu
|
|
- name: Clone repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.ref }}
|
|
submodules: false
|
|
- name: build
|
|
working-directory: tools/sotn-debugmodule
|
|
run: make
|