Skip to content

Commit

Permalink
windows support, add treegen into build
Browse files Browse the repository at this point in the history
  • Loading branch information
harrisonvanderbyl committed Jun 9, 2024
1 parent 01d7abe commit 2d8fc51
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 5 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,20 @@ jobs:
distribution: temurin
java-version: 17
# Clone Godot
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
repository: godotengine/godot

# Clone our module under the correct directory
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: modules/rwkv

- uses: actions/checkout@v4
with:
repository: harrisonvanderbyl/treegen
path: modules/treegen

# init submodules in the rwkv module
- name: Init submodules
run: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ jobs:
with:
path: modules/rwkv

- uses: actions/checkout@v4
with:
repository: harrisonvanderbyl/treegen
path: modules/treegen
# init submodules in the rwkv module
- name: Init submodules
run: |
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ jobs:
with:
path: modules/rwkv

- uses: actions/checkout@v4
with:
repository: harrisonvanderbyl/treegen
path: modules/treegen

# init submodules in the rwkv module
- name: Init submodules
run: |
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,16 @@ jobs:

steps:
# Clone Godot
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
repository: godotengine/godot

- uses: actions/checkout@v4
with:
repository: harrisonvanderbyl/treegen
path: modules/treegen
# Clone our module under the correct directory
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: modules/rwkv

Expand Down

0 comments on commit 2d8fc51

Please sign in to comment.