-
Notifications
You must be signed in to change notification settings - Fork 650
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: add sync-files.yaml Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * ci: update CI settings Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * chore: add TODO comments Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * chore: change package name in check-missing-packages.yaml Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * ci: add git config for private repositories Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * fix Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * fix style Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
- Loading branch information
1 parent
aee9a76
commit 9c4f6f3
Showing
25 changed files
with
135 additions
and
772 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,20 @@ | ||
- repository: autowarefoundation/autoware | ||
files: | ||
- source: .github/dependabot.yaml | ||
- source: .github/workflows/automatic-rebase.yaml | ||
# - source: .github/workflows/build.yaml # TODO: Sync after renaming to autoware.repos | ||
- source: .github/workflows/pre-commit-optional.yaml | ||
- source: .github/workflows/pre-commit.yaml | ||
- source: .github/workflows/semantic-pull-request.yaml | ||
- source: .github/workflows/spell-check.yaml | ||
# - source: .github/workflows/vcs-import.yaml # TODO: Sync after renaming to autoware.repos | ||
- source: .clang-format | ||
- source: .markdown-link-check.json | ||
- source: .markdownlint.yaml | ||
# - source: .pre-commit-config.yaml # TODO: Sync after yamllint and ansible-lint have passed | ||
- source: .pre-commit-config-optional.yaml | ||
- source: .prettierignore | ||
- source: .prettierrc | ||
- source: .yamllint.yaml | ||
- source: CPPLINT.cfg | ||
- source: setup.cfg |
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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,34 @@ | ||
name: Check missing packages | ||
|
||
on: | ||
schedule: | ||
- cron: 0 19 * * 0 # run at 4 AM JST on Sundays | ||
workflow_dispatch: | ||
|
||
jobs: | ||
check-missing-packages: | ||
runs-on: ubuntu-latest | ||
container: ros:${{ matrix.ros_distribution }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- { ros_distribution: galactic, package: __dummy__ } | ||
steps: | ||
- name: Check ros-${{ matrix.ros_distribution }}-${{ matrix.package }} | ||
id: check-package | ||
run: | | ||
sudo apt-get -y update | ||
result=$(apt-cache search ros-${{ matrix.ros_distribution }}-${{ matrix.package }}) | ||
echo "::set-output name=result::$result" | ||
- name: Install ros-${{ matrix.ros_distribution }}-${{ matrix.package }} | ||
if: ${{ jobs.check-package.outputs.result != '' }} | ||
run: | | ||
sudo apt-get -y install ros-${{ matrix.ros_distribution }}-${{ matrix.package }} | ||
- name: Notify by raising an error | ||
if: ${{ jobs.check-package.outputs.result != '' }} | ||
run: | | ||
echo "ros-${{ matrix.ros_distribution }}-${{ matrix.package }} can be installed." | ||
exit 1 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.