-
Notifications
You must be signed in to change notification settings - Fork 54
Extend Docker images and CI #442
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
Changes from all commits
3002f02
a96c1d2
4507db1
ac4d97c
4e28f07
2fe1c35
5d3c1af
f2d32fe
1a88f53
61c7eca
8ffce60
fe033aa
9626ea5
fcc3e67
219a71e
14c2129
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| # an API wrapper for a collection of SMT solvers: | ||
| # https://github.com/sosy-lab/java-smt | ||
| # | ||
| # SPDX-FileCopyrightText: 2020 Dirk Beyer <https://www.sosy-lab.org> | ||
| # SPDX-FileCopyrightText: 2025 Dirk Beyer <https://www.sosy-lab.org> | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
|
|
@@ -14,6 +14,22 @@ | |
| # docker build --pull -t registry.gitlab.com/sosy-lab/software/java-smt/test:jdk-11 - < build/gitlab-ci.Dockerfile.jdk-11 | ||
| # docker push registry.gitlab.com/sosy-lab/software/java-smt/test:jdk-11 | ||
|
|
||
| FROM registry.gitlab.com/sosy-lab/software/java-project-template/test:jdk-11 | ||
| FROM ubuntu:20.04 | ||
|
|
||
| ENV DEBIAN_FRONTEND=noninteractive | ||
| ENV TZ=UTC | ||
|
|
||
| RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
| ant \ | ||
| curl \ | ||
| git \ | ||
| jq \ | ||
| openjdk-11-jre-headless \ | ||
| openjdk-11-jdk-headless \ | ||
| wget \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
|
|
||
| ENV LANG C.UTF-8 | ||
|
|
||
|
Comment on lines
+17
to
+33
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are the changes here just temporary due to the
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, temporary, until further notice 😄, e.g., until there is one multi-arch Docker image in the registry where we can inherit from.
|
||
| RUN apt-get update && apt-get install -y \ | ||
| libgomp1 | ||
Uh oh!
There was an error while loading. Please reload this page.