Skip to content

Commit

Permalink
Doing individual submodule loads
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioMartin86 committed Apr 28, 2024
1 parent 866c5d5 commit c731d5b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ name: Build Waterbox

on:
pull_request:
branches: [ "master" ]
#branches: [ "master" ]
push:
branches: [ "master" ]
#branches: [ "master" ]
branches: [ "upstreamCI" ]

env:
CC: clang-18
Expand All @@ -17,8 +18,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Installing clang 18
run: wget https://apt.llvm.org/llvm.sh;
chmod u+x llvm.sh;
Expand Down Expand Up @@ -59,6 +58,10 @@ jobs:
uses: actions/download-artifact@v4
with:
name: compiled-waterbox
- name: Getting GPGX submodule
working-directory: ./waterbox/gpgx
run: git submodule init Genesis-Plus-GX;
git submodule update Genesis-Plus-GX
- name: Building GPGX core
working-directory: ./waterbox/gpgx
run: make -j${nproc}

0 comments on commit c731d5b

Please sign in to comment.