-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
fedora-rawhide-gcc-latest-x86_64.cfg
... to test latest version of gcc. Signed-off-by: Siteshwar Vashisht <[email protected]>
- Loading branch information
Showing
3 changed files
with
25 additions
and
26 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
.../vm-provisioning/ansible/roles/osh-worker-role/files/fedora-rawhide-gcc-latest-x86_64.cfg
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,22 @@ | ||
# This is development/testing only mock profile, not exactly the same as | ||
# is used on copr builders; but it is basically similar. If you need an | ||
# exact mock configuration (because you e.g. try to reproduce failed | ||
# build), such configuration is put alongside the built RPMs. | ||
|
||
include('/etc/mock/fedora-rawhide-x86_64.cfg') | ||
|
||
config_opts['root'] = 'dmalcolm-gcc-latest_fedora-rawhide-x86_64' | ||
config_opts['isolation'] = 'unchanged' | ||
|
||
config_opts['dnf.conf'] += """ | ||
[copr_base] | ||
name="Copr repository" | ||
baseurl=https://download.copr.fedorainfracloud.org/results/dmalcolm/gcc-latest/fedora-rawhide-x86_64/ | ||
gpgcheck=0 | ||
enabled=1 | ||
skip_if_unavailable=1 | ||
metadata_expire=0 | ||
cost=1 | ||
best=1 | ||
""" |
23 changes: 0 additions & 23 deletions
23
containers/vm-provisioning/ansible/roles/osh-worker-role/files/site-defaults.cfg
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -76,10 +76,10 @@ | |
|
||
# Workaround for https://lists.fedoraproject.org/archives/list/[email protected]/thread/GY2XQBNNDHR5VHGA24MBAUBKNAJPUDZW/ | ||
# TODO: Remove when latest gcc is released | ||
- name: Copy /etc/mock/site-defaults.cfg | ||
- name: Copy /etc/mock/fedora-rawhide-gcc-latest-x86_64.cfg | ||
ansible.builtin.copy: | ||
src: site-defaults.cfg | ||
dest: /etc/mock/site-defaults.cfg | ||
src: fedora-rawhide-gcc-latest-x86_64.cfg | ||
dest: /etc/mock/fedora-rawhide-gcc-latest-x86_64.cfg | ||
owner: root | ||
group: mock | ||
mode: 0644 | ||
|