-
Notifications
You must be signed in to change notification settings - Fork 9.5k
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
simulator: run simulator test in ci #24691
Merged
Merged
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
6fea109
run simulator test in ci
maxime-desroches ec26d32
block navd process
maxime-desroches aec94fc
block ui
maxime-desroches 82c8f16
fix jenkins
maxime-desroches 081f47d
build docker
maxime-desroches fda3c61
remove tty
maxime-desroches 01f42c6
remove tty for carla
maxime-desroches aa1d8d4
detach carla_sim
maxime-desroches efc928e
more retries
maxime-desroches a6282b3
only build once
maxime-desroches 27c9374
add more time for bridge
maxime-desroches a8c2d40
cleanup
maxime-desroches a02d0c1
use qt offscreen
maxime-desroches 4132b21
expose to docker
maxime-desroches f59754f
block ui
maxime-desroches 7b7c153
use new dockerimage
maxime-desroches 03e7d59
fix
maxime-desroches 0bb6405
from ubuntu20.04
maxime-desroches ba23bf6
install curl
maxime-desroches 6f5c358
add ssh
maxime-desroches ee67952
add locales
maxime-desroches c0cbc9a
noninteractive
maxime-desroches 1f94cb0
syntax
maxime-desroches 9a6c084
use base
maxime-desroches 97abd7b
smaller image
maxime-desroches 65a8811
add git + git lfs
maxime-desroches f4a91e0
kill carla
maxime-desroches e3535ae
run in parallel
adeebshihadeh 43eb35d
fix missing agents
adeebshihadeh 1eafbc3
default agent?
adeebshihadeh 1e4559e
little cleanup
adeebshihadeh 770a1f9
default doesn't work
adeebshihadeh 0cf1524
not in ci
adeebshihadeh 95c8f6d
fix path
adeebshihadeh 62ac833
fix path
adeebshihadeh 8291168
new msg
adeebshihadeh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,21 @@ | ||
FROM ubuntu:20.04 | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
apt-utils \ | ||
sudo \ | ||
ssh \ | ||
curl \ | ||
ca-certificates \ | ||
git \ | ||
git-lfs && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN curl -fsSL https://get.docker.com -o get-docker.sh && \ | ||
sudo sh get-docker.sh && \ | ||
distribution=$(. /etc/os-release;echo $ID$VERSION_ID) && \ | ||
curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | sudo apt-key add - && \ | ||
curl -s -L https://nvidia.github.io/nvidia-docker/$distribution/nvidia-docker.list | sudo tee /etc/apt/sources.list.d/nvidia-docker.list && \ | ||
sudo apt-get update && \ | ||
sudo apt-get install -y nvidia-docker2 |
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
File renamed without changes.
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's make sure the test properly cleans this up if it doesn't already