This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates from CRW 2.2 build scripts (#482)
* updates from CRW 2.2 Change-Id: I777b9353d9634f810598effa51ea88f26983a171 Signed-off-by: nickboldt <nboldt@redhat.com> * make README and build.sh more generic so it's more closely aligned to devfile reg script and downstream version Change-Id: Ibb2ae67ac5442e85b9aceba4500b25deb457b9aa Signed-off-by: nickboldt <nboldt@redhat.com> * rename build/dockerfiles/content_sets_centos8_appstream.repo to build/dockerfiles/content_sets_centos8.repo and include baseos repo too Change-Id: Ie2cede8bbf5f9d55089a6e2acd24b8733e1b6003 Signed-off-by: nickboldt <nboldt@redhat.com> * rename build/dockerfiles/fedora.repo to build/dockerfiles/content_sets_fedora30.repo for consistency/accuracy Change-Id: I732f8d891bded2400bac635c43dd3b212e7b13cc Signed-off-by: nickboldt <nboldt@redhat.com> * updates from CRW 2.2 Change-Id: Ie8df16a14c44a4ccdaedeb02e045a504de18385a Signed-off-by: nickboldt <nboldt@redhat.com> * fix broken shellcheck source directive;remove duplicate declaration of SCRIPT_DIR Change-Id: I12a670025b18ace6a64f1a2a7201160d751bd594 Signed-off-by: nickboldt <nboldt@redhat.com> * yet more shellcheck fixes Change-Id: I6ce96afa77d9791b74dd1d638cbcbcf0c23aff1e Signed-off-by: nickboldt <nboldt@redhat.com>
- Loading branch information
Showing
11 changed files
with
116 additions
and
94 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
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,11 @@ | ||
[centos-8-for-appstream] | ||
name=centos-8-appstream | ||
baseurl=http://mirror.centos.org/centos-8/8/AppStream/$basearch/os | ||
enabled=1 | ||
gpgcheck=0 | ||
|
||
[centos-8-for-baseos] | ||
name=centos-8-baseos | ||
baseurl=http://mirror.centos.org/centos-8/8/BaseOS/$basearch/os | ||
enabled=1 | ||
gpgcheck=0 |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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,21 @@ | ||
#!/bin/bash | ||
# | ||
# Copyright (c) 2020 Red Hat, Inc. | ||
# This program and the accompanying materials are made | ||
# available under the terms of the Eclipse Public License 2.0 | ||
# which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
# | ||
# SPDX-License-Identifier: EPL-2.0 | ||
# | ||
# Contributors: | ||
# Red Hat, Inc. - initial API and implementation | ||
# | ||
|
||
set -x | ||
|
||
if [[ ! -f /tmp/resources.tgz ]] || [[ ${BOOTSTRAP} == "true" ]]; then | ||
./cache_artifacts.sh v3 | ||
else | ||
# unpack into specified folder | ||
tar -xvf /tmp/resources.tgz -C "$1/" | ||
fi |
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