-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexecution-environment-weekly.yml
More file actions
99 lines (95 loc) · 3.09 KB
/
execution-environment-weekly.yml
File metadata and controls
99 lines (95 loc) · 3.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
version: 3
images:
base_image:
#name: quay.io/ansible/awx-ee:latest
name: quay.io/centos/centos:stream9
dependencies:
ansible_core:
package_pip: ansible-core<2.18
ansible_runner:
package_pip: ansible-runner
python_interpreter:
package_system: "python3.12"
python_path: "/usr/bin/python3.12"
galaxy:
roles:
- src: mk-ansible-roles.check_reboot
- src: mk-ansible-roles.setup_nfs_server
collections:
- name: awx.awx
- name: azure.azcollection
version: ">=2.1.0"
- name: google.cloud
- name: amazon.aws
- name: community.aws
- name: vmware.vmware_rest
- name: community.vmware
#version: 3.9.0
- name: openstack.cloud
#version: 1.8.0
- name: kubernetes.core
- name: kubevirt.core
- name: ovirt.ovirt
- name: fedora.linux_system_roles
- name: ansible.posix
- name: ansible.utils
- name: community.general
- name: community.crypto
- name: ibm.power_hmc
version: ">=1.0.0"
# SAP Community Roles
# SAP Community Roles
- name: git+https://github.com/sap-linuxlab/community.sap_libs.git,dev
type: git
- name: git+https://github.com/sap-linuxlab/community.sap_operations.git,dev
type: git
- name: git+https://github.com/sap-linuxlab/community.sap_install.git,dev
type: git
- name: git+https://github.com/sap-linuxlab/community.sap_launchpad.git,dev
type: git
- name: git+https://github.com/sap-linuxlab/community.sap_infrastructure.git,dev
type: git
python: requirements.txt
system:
- python3.12-devel [platform:rpm compile]
- openssl [platform:rpm]
- openssl-devel [platform:rpm compile]
- libxml2 [platform:rpm]
- libxml2-devel [platform:rpm compile]
- libcurl-devel [platform:rpm compile]
- krb5-devel [platform:rpm compile]
- krb5-workstation [platform:rpm]
- subversion [platform:rpm]
- subversion [platform:dpkg]
- git [platform:rpm]
- git-core [platform:rpm]
- git-lfs [platform:rpm]
- sshpass [platform:rpm]
- rsync [platform:rpm]
- epel-release [platform:rpm]
- unzip [platform:rpm]
- podman-remote [platform:rpm]
- cmake [platform:rpm compile]
- gcc [platform:rpm compile]
- gcc-c++ [platform:rpm compile]
- make [platform:rpm compile]
- cmake [platform:rpm compile]
- clang [platform:rpm compile]
- openssl-devel [platform:rpm compile]
# binutils [platform:rpm compile]
# glibc-devel [platform:rpm compile]
# pkgconf [platform:rpm compile]
# pkgconf-pkg-config [platform:rpm compile]
# pkgconf-m4 [platform:rpm compile]
options:
package_manager_path: /usr/bin/dnf
additional_build_steps:
#prepend_builder:
# - RUN ln -s /usr/bin/gcc /usr/bin/cc
prepend_base:
- RUN dnf update -y && dnf install -y git
append_base:
- RUN $PYCMD -m pip install -U pip
append_final:
- RUN dnf clean all
- RUN alternatives --install /usr/bin/python python /usr/bin/python3.12 312