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

fix: ubuntu deb tests #530

Merged
merged 3 commits into from
Oct 18, 2023
Merged
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
3 changes: 1 addition & 2 deletions dockers/install/debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
ARG VERS=16.04
ARG VERS=20.04
FROM ubuntu:${VERS}
ARG JDK=openjdk-8-jdk
RUN apt-get update
RUN apt-get install -y software-properties-common
RUN add-apt-repository -y ppa:openjdk-r/ppa
RUN apt-get update
RUN apt-get install -y ${JDK}
RUN mkdir /root/.rd/
Expand Down
2 changes: 1 addition & 1 deletion scripts/install-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail

DEBTAG=rdcli-deb
RPMTAG=rdcli-rpm
UBUNTUVERS="16.04 18.04"
UBUNTUVERS="18.04 20.04 22.04"
CENTOSVERS="7"
RPMJDK="java-1.8.0-openjdk java-11-openjdk"
DEBJDK="openjdk-8-jdk openjdk-11-jdk"
Expand Down
Loading