File tree Expand file tree Collapse file tree 3 files changed +37
-0
lines changed
Expand file tree Collapse file tree 3 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1+ [submodule "dependencies/Ponder "]
2+ path = dependencies/Ponder
3+ url = https://github.com/Preponderous-Software/Ponder.git
You can’t perform that action at this time.
0 commit comments