mirror of
https://github.com/openshift/openshift-ansible.git
synced 2026-02-05 06:46:04 +01:00
Prow CI currently runs several commands before e2e tests. These commands should be placed in our repo
10 lines
336 B
Bash
Executable File
10 lines
336 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script builds RPMs for Prow CI
|
|
tito tag --offline --accept-auto-changelog --use-release '9999%{?dist}'
|
|
tito build --output="_output/local/releases" --rpm --test --offline --quiet
|
|
|
|
mkdir _output/local/releases/rpms
|
|
mv _output/local/releases/noarch/* _output/local/releases/rpms
|
|
createrepo _output/local/releases/rpms
|