-
Notifications
You must be signed in to change notification settings - Fork 44
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
split a testing_using_container script out of backend-for-testing.md #884
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
1fd3a93
copied the script part of rust/agama-cli/doc/backend-for-testing.md
mvidner 7bbdf94
updated from testing_using_container.md
mvidner fecb7b4
use /checkout-ruby-dbus if WITH_RUBY_DBUS=1
mvidner 19cd86c
adjust OBS project
mvidner b806f3b
Add doc comment to script; exit if not in the git checkout
mvidner 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,56 @@ | ||
#!/bin/bash | ||
# Run checked-out Agama in a podman container. | ||
# This is meant to be run from a working copy of the git repo. | ||
# It uses the systemsmanagement:Agama:Staging/agama-testing image as | ||
# a platform and runs /setup.sh | ||
# | ||
# Details: | ||
# - container name: agama | ||
# - port 9090 is exposed so that web UI works | ||
# - 'WITH_RUBY_DBUS=1 $0' will prefer ../ruby-dbus to any ruby-dbus.gem | ||
|
||
set -x | ||
set -eu | ||
|
||
# https://build.opensuse.org/package/show/systemsmanagement:Agama:Staging/agama-testing | ||
CIMAGE=registry.opensuse.org/systemsmanagement/agama/staging/containers/opensuse/agama-testing:latest | ||
# rename this if you test multiple things | ||
CNAME=agama | ||
|
||
test -f service/agama.gemspec || { echo "You should run this from a checkout of agama"; exit 1; } | ||
|
||
# destroy the previous instance, can fail if there is no previous instance | ||
podman stop ${CNAME?} || : no problem if there was nothing to stop | ||
podman rm ${CNAME?} || : no problem if there was nothing to remove | ||
|
||
# Update our image | ||
podman pull ${CIMAGE?} | ||
|
||
# Optionally use a git version of ruby-dbus | ||
# because Agama pushes its limits so it's better | ||
# to set up for easy testing | ||
MORE_VOLUMES=() | ||
if [ "${WITH_RUBY_DBUS-}" = 1 ]; then | ||
MORE_VOLUMES=(-v ../ruby-dbus:/checkout-ruby-dbus) | ||
fi | ||
|
||
podman run --name ${CNAME?} \ | ||
--privileged --detach --ipc=host \ | ||
-v .:/checkout \ | ||
${MORE_VOLUMES[@]} \ | ||
-p 9090:9090 \ | ||
${CIMAGE?} | ||
|
||
# shortcut for the following | ||
CEXEC="podman exec ${CNAME?} bash -c" | ||
|
||
${CEXEC?} "cd /checkout && ./setup.sh" | ||
|
||
# Now the CLI is in the same repo, just symlink it | ||
${CEXEC?} "ln -sfv /checkout/./rust/target/debug/agama /usr/bin/agama" | ||
|
||
# Manually start cockpit as socket activation does not work with port forwarding | ||
${CEXEC?} "systemctl start cockpit" | ||
|
||
# Interactive shell in the container | ||
podman exec --tty --interactive ${CNAME?} bash |
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.
Maybe document that env variable at the top of script together with some documentation what script does?