Skip to content

Commit 3b63786

Browse files
Add Ponder as git submodule and create CI build workflow
Co-authored-by: dmccoystephenson <21204351+dmccoystephenson@users.noreply.github.com>
1 parent aa7e2da commit 3b63786

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed

.github/workflows/build.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ main, develop, copilot/** ]
6+
pull_request:
7+
branches: [ main, develop ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v4
16+
with:
17+
submodules: recursive
18+
19+
- name: Set up JDK 8
20+
uses: actions/setup-java@v4
21+
with:
22+
java-version: '8'
23+
distribution: 'temurin'
24+
cache: maven
25+
26+
- name: Build and install Ponder to local Maven repository
27+
run: |
28+
cd dependencies/Ponder
29+
chmod +x gradlew
30+
./gradlew build publishToMavenLocal -x test
31+
32+
- name: Build SimpleSkills with Maven
33+
run: mvn clean compile --batch-mode --update-snapshots

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "dependencies/Ponder"]
2+
path = dependencies/Ponder
3+
url = https://github.com/Preponderous-Software/Ponder.git

dependencies/Ponder

Submodule Ponder added at 6ecf480

0 commit comments

Comments
 (0)