forked from wpilibsuite/allwpilib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into more-serialization
- Loading branch information
Showing
262 changed files
with
6,890 additions
and
990 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,50 +30,61 @@ jobs: | |
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Your Name" | ||
- name: Run update_eigen.py | ||
- name: Run eigen.py | ||
run: | | ||
cd upstream_utils | ||
./update_eigen.py | ||
- name: Run update_fmt.py | ||
./eigen.py clone | ||
./eigen.py copy-upstream-to-thirdparty | ||
- name: Run fmt.py | ||
run: | | ||
cd upstream_utils | ||
./update_fmt.py | ||
- name: Run update_gcem.py | ||
./fmt.py clone | ||
./fmt.py copy-upstream-to-thirdparty | ||
- name: Run gcem.py | ||
run: | | ||
cd upstream_utils | ||
./update_gcem.py | ||
- name: Run update_json.py | ||
./gcem.py clone | ||
./gcem.py copy-upstream-to-thirdparty | ||
- name: Run json.py | ||
run: | | ||
cd upstream_utils | ||
./update_json.py | ||
- name: Run update_libuv.py | ||
./json.py clone | ||
./json.py copy-upstream-to-thirdparty | ||
- name: Run libuv.py | ||
run: | | ||
cd upstream_utils | ||
./update_libuv.py | ||
- name: Run update_llvm.py | ||
./libuv.py clone | ||
./libuv.py copy-upstream-to-thirdparty | ||
- name: Run llvm.py | ||
run: | | ||
cd upstream_utils | ||
./update_llvm.py | ||
- name: Run update_mpack.py | ||
./llvm.py clone | ||
./llvm.py copy-upstream-to-thirdparty | ||
- name: Run mpack.py | ||
run: | | ||
cd upstream_utils | ||
./update_mpack.py | ||
- name: Run update_stack_walker.py | ||
./mpack.py clone | ||
./mpack.py copy-upstream-to-thirdparty | ||
- name: Run stack_walker.py | ||
run: | | ||
cd upstream_utils | ||
./update_stack_walker.py | ||
- name: Run update_memory.py | ||
./stack_walker.py clone | ||
./stack_walker.py copy-upstream-to-thirdparty | ||
- name: Run memory.py | ||
run: | | ||
cd upstream_utils | ||
./update_memory.py | ||
- name: Run update_protobuf.py | ||
./memory.py clone | ||
./memory.py copy-upstream-to-thirdparty | ||
- name: Run protobuf.py | ||
run: | | ||
cd upstream_utils | ||
./update_protobuf.py | ||
- name: Run update_sleipnir.py | ||
./protobuf.py clone | ||
./protobuf.py copy-upstream-to-thirdparty | ||
- name: Run sleipnir.py | ||
run: | | ||
cd upstream_utils | ||
./update_sleipnir.py | ||
./sleipnir.py clone | ||
./sleipnir.py copy-upstream-to-thirdparty | ||
- name: Add untracked files to index so they count as changes | ||
run: git add -A | ||
- name: Check output | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
ext { | ||
useJava = true | ||
useCpp = false | ||
baseId = 'epilogue-processor' | ||
groupId = 'edu.wpi.first.epilogue' | ||
|
||
devMain = '' | ||
} | ||
|
||
apply from: "${rootDir}/shared/java/javacommon.gradle" | ||
|
||
dependencies { | ||
implementation(project(':epilogue-runtime')) | ||
api project(':wpilibNewCommands') | ||
|
||
implementation 'com.google.auto.service:auto-service:1.1.1' | ||
annotationProcessor 'com.google.auto.service:auto-service:1.1.1' | ||
testImplementation 'com.google.testing.compile:compile-testing:+' | ||
} |
Oops, something went wrong.