Skip to content

Commit ba68aa4

Browse files
committed
(actions) load bashrc and profile
1 parent ed517f7 commit ba68aa4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
schedule:
77
- cron: '0 4 * * *'
88

9+
defaults:
10+
run:
11+
shell: bash --noprofile --norc -o pipefail {0}
12+
913
jobs:
1014
deployment:
1115
name: deployment
@@ -14,13 +18,13 @@ jobs:
1418
- uses: actions/checkout@v2
1519
- name: Install
1620
run: |
17-
source <(wget -O - https://raw.githubusercontent.com/tue-robotics/tue-env/master/installer/bootstrap.bash) || true
21+
source <(wget -O - https://raw.githubusercontent.com/tue-robotics/tue-env/master/installer/bootstrap.bash)
22+
git -C ~/.tue checkout broken_pipe
1823
tue-get install tue-documentation-github --no-ros-deps --doc-depend
1924
MSG_PKGS=($(./.ci/get_message_packages.py base_local_planner costmap_2d)) # Skip base_local_planner and costmap_2d as these take too much time
2025
echo "MSG_PKGS= ${MSG_PKGS[@]}"
2126
MSG_TARGETS=(${MSG_PKGS[@]/#/ros-})
2227
tue-get install ros-python_orocos_kdl ${MSG_TARGETS[@]} # Needs to be installed fully as it needs to be build to generate docs
23-
export ROS_PACKAGE_PATH=""
2428
- name: Script
2529
run: |
2630
source ~/.tue/setup.bash

0 commit comments

Comments
 (0)