Skip to content

Commit

Permalink
Bring in new build check and deploy from OoT3DR. (#20)
Browse files Browse the repository at this point in the history
* Bring in new build check and deploy from OoT3DR.

* Finally fix builds.

* Update gitmodules to point to new repo.

Update makefile to ensure everything builds as intended.

* Adjust builds to remove specific keys that are no longer needed.
  • Loading branch information
PhlexPlexico authored Jan 16, 2024
1 parent 8a17678 commit 4df687f
Show file tree
Hide file tree
Showing 5 changed files with 488 additions and 9 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/build-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: MM3DR Build Check

on:
pull_request:

jobs:
format:
name: Verify Formatting
runs-on: ubuntu-latest

steps:
- name: Checkout Project
uses: actions/checkout@v3

# - name: Format Project
# uses: DoozyX/[email protected]
# with:
# source: "./code ./source"
# extensions: 'c,h,cpp,hpp'
# clangFormatVersion: 14

build:
name: Confirm Compilable
runs-on: ubuntu-latest
container:
image: ghcr.io/z3dr/randotools:latest

steps:
- name: Checkout Project
uses: actions/checkout@v3
with:
submodules: true

- name: Compile Project
run: |
make -j
Loading

0 comments on commit 4df687f

Please sign in to comment.