-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from steveeJ-forks/init-openshift-release-ci
*: add files for (proper) openshift/release integration
- Loading branch information
Showing
3 changed files
with
32 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# See the OWNERS docs: https://git.k8s.io/community/contributors/guide/owners.md | ||
# This file just uses aliases defined in OWNERS_ALIASES. | ||
|
||
approvers: | ||
- installer-approvers | ||
reviewers: | ||
- cincinnati-reviewers |
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,10 @@ | ||
# See the OWNERS_ALIASES docs: https://git.k8s.io/community/contributors/guide/owners.md#OWNERS_ALIASES | ||
|
||
aliases: | ||
cincinnati-approvers: | ||
- aaronlevy | ||
- crawford | ||
- smarterclayton | ||
- steveeJ | ||
cincinnati-reviewers: | ||
- lucab |
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,15 @@ | ||
FROM centos:7 as builder | ||
|
||
RUN yum -y groupinstall 'Development Tools' | ||
RUN yum -y install openssl-devel | ||
|
||
ADD https://static.rust-lang.org/dist/rust-1.31.0-x86_64-unknown-linux-gnu.tar.gz rust.tar.gz | ||
RUN tar -xf rust.tar.gz --strip 1 | ||
RUN ./install.sh | ||
|
||
ENV HOME="/root" | ||
|
||
RUN \ | ||
mkdir -p $HOME/.cargo/git/ && \ | ||
find $HOME/. -type d -exec chmod 777 {} \; && \ | ||
find $HOME/. -type f -exec chmod ugo+rw {} \; |