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

Use OBS built container as CI base to provide all dependencies #142

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
7 changes: 1 addition & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,9 @@ version: 2.1
jobs:
unit:
docker:
- image: registry.opensuse.org/opensuse/leap:15.5
- image: registry.opensuse.org/devel/openqa/ci/containers/openqa-trigger-from-obs-dev
steps:
- checkout
- run:
command: |
zypper -n in --no-recommends diffutils make python3 tar git-core
- checkout
- run: git clean -df
- run: make test_regen_all
- run: make test

Expand Down
4 changes: 4 additions & 0 deletions container/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!BuildTag: openqa-trigger-from-obs-dev
#!UseOBSRepositories
FROM opensuse/leap:15.5
RUN zypper -n in --no-recommends diffutils tar make python3
Loading