-
Notifications
You must be signed in to change notification settings - Fork 609
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'wpilibsuite/2027' into socketcan
- Loading branch information
Showing
56 changed files
with
757 additions
and
130 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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
'2027': | ||
- base-branch: '2027' | ||
'component: apriltag': | ||
- changed-files: | ||
- any-glob-to-any-file: apriltag/** | ||
'component: command-based': | ||
- changed-files: | ||
- any-glob-to-any-file: wpilibNewCommands/** | ||
'component: cscore': | ||
- changed-files: | ||
- any-glob-to-any-file: cscore/** | ||
'component: datalogtool': | ||
- changed-files: | ||
- any-glob-to-any-file: datalogtool/** | ||
'component: epilogue': | ||
- changed-files: | ||
- any-glob-to-any-file: epilogue-*/** | ||
'component: examples': | ||
- changed-files: | ||
- any-glob-to-any-file: wpilib*Examples/** | ||
'component: glass': | ||
- changed-files: | ||
- any-glob-to-any-file: glass/** | ||
'component: hal': | ||
- changed-files: | ||
- any-glob-to-any-file: hal/** | ||
'component: ntcore': | ||
- changed-files: | ||
- any-glob-to-any-file: ntcore/** | ||
'component: outlineviewer': | ||
- changed-files: | ||
- any-glob-to-any-file: outlineviewer/** | ||
'component: sysid': | ||
- changed-files: | ||
- any-glob-to-any-file: sysid/** | ||
'component: teamnumbersetter': | ||
- changed-files: | ||
- any-glob-to-any-file: roborioteamnumbersetter/** | ||
'component: wpilibc': | ||
- changed-files: | ||
- any-glob-to-any-file: wpilibc/** | ||
'component: wpilibj': | ||
- changed-files: | ||
- any-glob-to-any-file: wpilibj/** | ||
'component: wpimath': | ||
- changed-files: | ||
- any-glob-to-any-file: wpimath/** | ||
'component: wpinet': | ||
- changed-files: | ||
- any-glob-to-any-file: wpinet/** | ||
'component: wpiunits': | ||
- changed-files: | ||
- any-glob-to-any-file: wpiunits/** | ||
'component: wpiutil': | ||
- changed-files: | ||
- any-glob-to-any-file: wpiutil/** |
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
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,12 @@ | ||
name: "Pull Request Labeler" | ||
on: | ||
- pull_request_target | ||
|
||
jobs: | ||
labeler: | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@v5 |
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 |
---|---|---|
|
@@ -29,19 +29,19 @@ jobs: | |
ctest-env: "" | ||
ctest-flags: "" | ||
name: "${{ matrix.name }}" | ||
runs-on: ubuntu-22.04 | ||
container: wpilib/roborio-cross-ubuntu:2025-22.04 | ||
runs-on: ubuntu-24.04 | ||
container: wpilib/roborio-cross-ubuntu:2025-24.04 | ||
steps: | ||
- name: Install Dependencies | ||
run: sudo apt-get update && sudo apt-get install -y libopencv-dev libopencv4.5-java clang-14 libprotobuf-dev protobuf-compiler ninja-build | ||
run: sudo apt-get update && sudo apt-get install -y libopencv-dev libopencv-java clang-18 libprotobuf-dev protobuf-compiler ninja-build | ||
|
||
- name: Install sccache | ||
uses: mozilla-actions/[email protected] | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: configure | ||
run: mkdir build && cd build && cmake -G Ninja -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_CXX_COMPILER_LAUNCHER=sccache -DCMAKE_C_COMPILER:FILEPATH=/usr/bin/clang-14 -DCMAKE_CXX_COMPILER:FILEPATH=/usr/bin/clang++-14 -DWITH_JAVA=OFF ${{ matrix.cmake-flags }} .. | ||
run: mkdir build && cd build && cmake -G Ninja -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_CXX_COMPILER_LAUNCHER=sccache -DCMAKE_C_COMPILER:FILEPATH=/usr/bin/clang-18 -DCMAKE_CXX_COMPILER:FILEPATH=/usr/bin/clang++-18 -DWITH_JAVA=OFF ${{ matrix.cmake-flags }} .. | ||
env: | ||
SCCACHE_WEBDAV_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | ||
SCCACHE_WEBDAV_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | ||
|
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
Oops, something went wrong.