Skip to content

Commit

Permalink
TMT: revdep podman build test
Browse files Browse the repository at this point in the history
Signed-off-by: Lokesh Mandvekar <lsm5@redhat.com>
  • Loading branch information
lsm5 committed Mar 6, 2024
1 parent 03d7052 commit a7c3e39
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
1 change: 1 addition & 0 deletions .fmf/version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1
13 changes: 13 additions & 0 deletions .packit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
jobs:
# All tests specified in the `/plans/` subdir
- job: tests
trigger: pull_request
#notifications:
#failure_comment:
# message: "podman build test failed. @containers/packit-build please check."
targets:
- fedora-rawhide-x86_64
skip_build: true
enable_net: true
identifier: podman_build
tmt_plan: "/plans/podman_build_test"
11 changes: 11 additions & 0 deletions plans/main.fmf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
prepare:
- how: install
package:
- git-core
- golang

/podman_build_test:
summary: Build Podman
execute:
how: tmt
script: bash ./plans/podman_build_test.sh
15 changes: 15 additions & 0 deletions plans/podman_build_test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env bash

set -eox pipefail

rpm -q golang
if [ -f /etc/fedora-release ]; then
export TMPDIR=/var/tmp
fi
git clone https://github.com/containers/podman
cd podman
go mod edit -replace github.com/containers/common=../
make vendor
cat go.mod
dnf -y builddep rpm/podman.spec
make rpm

0 comments on commit a7c3e39

Please sign in to comment.