Skip to content

Commit 6273856

Browse files
committed
Merge branch 'master' into fix-galactic
2 parents 009616d + 12decc9 commit 6273856

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
pull_request:
77
types: [opened, synchronize, reopened]
88
env:
9-
SONAR_SCANNER_VERSION: 4.7.0.2747
9+
SONAR_SCANNER_VERSION: 6.1.0.4477
1010
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1111
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
1212
PARALLEL_THREADS: 2

Dockerfile

+14-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM osrf/ros:humble-desktop
22

3-
ARG SONAR_SCANNER_VERSION=4.7.0.2747
3+
ARG SONAR_SCANNER_VERSION=6.1.0.4477
44

55
ARG DEBIAN_FRONTEND=noninteractive
66

@@ -11,6 +11,7 @@ ENV HOME /home/dockerdev
1111
ARG UID=1000
1212

1313
RUN apt-get update && apt-get install --yes \
14+
apt-utils \
1415
build-essential \
1516
pkg-config \
1617
cmake \
@@ -23,9 +24,16 @@ RUN apt-get update && apt-get install --yes \
2324
# Add a "dockerdev" user with sudo capabilities
2425
# 1000 is the first user ID issued on Ubuntu; might
2526
# be different for Mac users. Might need to add more.
26-
RUN useradd -u ${UID} -ms /bin/bash -G sudo dockerdev && \
27-
echo '%sudo ALL=(ALL) NOPASSWD:ALL' >>/etc/sudoers && \
28-
chown -R dockerdev:dockerdev $HOME/
27+
# Create the user with the specified UID
28+
RUN useradd -u $UID -m dockerdev && \
29+
# Set the user's shell to /bin/bash
30+
chsh -s /bin/bash dockerdev && \
31+
# Add the user to the sudo group
32+
usermod -aG sudo dockerdev && \
33+
# Add the user to sudoers with no password prompt for sudo commands
34+
echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers && \
35+
# Change ownership of the home directory to the new user
36+
chown -R dockerdev:dockerdev $HOME
2937

3038
USER dockerdev
3139

@@ -44,10 +52,10 @@ RUN sudo apt-get -y install gcovr
4452
# Download and set up sonar-scanner
4553
RUN sudo apt-get -y install unzip && \
4654
mkdir -p $HOME/.sonar && \
47-
curl -sSLo $HOME/.sonar/sonar-scanner.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONAR_SCANNER_VERSION}-linux.zip && \
55+
curl -sSLo $HOME/.sonar/sonar-scanner.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONAR_SCANNER_VERSION}-linux-x64.zip && \
4856
unzip -o $HOME/.sonar/sonar-scanner.zip -d $HOME/.sonar/
4957

50-
ENV PATH="${PATH}:/home/dockerdev/.sonar/sonar-scanner-${SONAR_SCANNER_VERSION}-linux/bin"
58+
ENV PATH="${PATH}:/home/dockerdev/.sonar/sonar-scanner-${SONAR_SCANNER_VERSION}-linux-x64/bin"
5159

5260
WORKDIR /mnt/workspace/src/swiftnav-ros2
5361

0 commit comments

Comments
 (0)