Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor DEE ubuntu jammy #298

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: checkout
uses: actions/checkout@v4
- name: setup
run: ./scripts/continuous_integration/github_actions/ros_humble/setup
run: ./scripts/setup/linux/ubuntu/jammy/install_prereqs --ros-humble
shell: bash
- name: build and test
run: ./scripts/continuous_integration/github_actions/ros_humble/build_test
Expand All @@ -93,7 +93,7 @@ jobs:
- name: checkout
uses: actions/checkout@v4
- name: setup
run: ./scripts/continuous_integration/github_actions/ubuntu_jammy/setup
run: ./scripts/setup/linux/ubuntu/jammy/install_prereqs
shell: bash
- name: build and test
run: ./scripts/continuous_integration/github_actions/ubuntu_jammy/build_test
Expand All @@ -106,7 +106,7 @@ jobs:
- name: checkout
uses: actions/checkout@v4
- name: setup
run: ./scripts/continuous_integration/github_actions/ubuntu_apt/setup
run: ./scripts/setup/ubuntu_apt/linux_ubuntu_apt
shell: bash
- name: build and test
run: ./scripts/continuous_integration/github_actions/ubuntu_apt/build_test
Expand Down
11 changes: 0 additions & 11 deletions scripts/continuous_integration/common/linux_ubuntu_jammy

This file was deleted.

11 changes: 0 additions & 11 deletions scripts/continuous_integration/common/ros_humble

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion scripts/continuous_integration/jenkins/setup
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

set -euxo pipefail

sudo ./scripts/continuous_integration/common/linux_ubuntu_jammy
sudo ./scripts/setup/linux/ubuntu/jammy/install_prereqs

cat > "${HOME}/.bazelrc" << EOF
startup --output_user_root=${WORKSPACE}/_bazel_${USER}
Expand Down
5 changes: 5 additions & 0 deletions scripts/setup/linux/ubuntu/jammy/install_prereqs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@

set -euxo pipefail

echo 'APT::Acquire::Retries "4";' > /etc/apt/apt.conf.d/80-acquire-retries
echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90-get-assume-yes

export DEBIAN_FRONTEND='noninteractive'

ros_humble=0

while [ "${1:-}" != "" ]; do
Expand Down
Loading