forked from autowarefoundation/autoware.universe
-
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 pull request autowarefoundation#369 from tier4/sync-upstream
chore: sync upstream
- Loading branch information
Showing
6 changed files
with
52 additions
and
63 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
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,32 @@ | ||
name: load-env | ||
|
||
on: | ||
workflow_call: | ||
outputs: | ||
base-image: | ||
value: ${{ jobs.load-env.outputs.base-image }} | ||
rosdistro: | ||
value: ${{ jobs.load-env.outputs.rosdistro }} | ||
|
||
jobs: | ||
load-env: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
base-image: ${{ steps.set-env.outputs.base-image }} | ||
rosdistro: ${{ steps.set-env.outputs.rosdistro }} | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Load env | ||
run: | | ||
cat amd64.env | sed -e "s/^\s*//" -e "/^#/d" >> $GITHUB_ENV | ||
if [ "$(uname -m)" = "aarch64" ]; then | ||
cat arm64.env | sed -e "s/^\s*//" -e "/^#/d" >> $GITHUB_ENV | ||
fi | ||
- name: Set env | ||
id: set-env | ||
run: | | ||
echo "base-image=${{ env.base_image }}" >> $GITHUB_OUTPUT | ||
echo "rosdistro=${{ env.rosdistro }}" >> $GITHUB_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,25 @@ | ||
# GNU global tags | ||
GTAGS | ||
GRTAGS | ||
GSYMS | ||
GPATH | ||
|
||
# Python byte-compile file | ||
__pycache__/ | ||
*.py[co] | ||
|
||
# editor backup files | ||
*~ | ||
\#*\# | ||
|
||
# backup files | ||
*.bak | ||
|
||
# Eclipse | ||
.cproject | ||
.project | ||
.pydevproject | ||
.settings/ | ||
# Vim | ||
*.swp | ||
*.swo | ||
|
||
# Visual Studio Code | ||
.vscode/ | ||
*.code-workspace | ||
|
||
# CLion | ||
.idea/ | ||
cmake-build-debug/ | ||
|
||
# ROSBag files | ||
*.bag | ||
|
||
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
ENV/ | ||
|
||
# Autoware Resources | ||
*.pcd | ||
*.bag | ||
*.csv | ||
|
||
/.metadata/ | ||
|
||
# colcon | ||
build/ | ||
install/ | ||
log/ | ||
/src/ | ||
|
||
# catkin | ||
build/ | ||
devel/ | ||
install/ | ||
logs/ | ||
.catkin_tools/ | ||
# Python | ||
*.pyc | ||
|
||
# cspell | ||
.cspell.json | ||
# Jetbrains | ||
.idea/ | ||
|
||
# temporary ignored packages | ||
src/**/COLCON_IGNORE | ||
# rviz Screen Capture | ||
capture/ | ||
|
||
# Don't ignore src/ because full-text search won't work. | ||
# CodeChecker | ||
.codechecker/ |
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