mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-15 12:13:24 +00:00
Reformat .drone.jsonnet (no changes)
This commit is contained in:
parent
f4c4b798ce
commit
892c89767e
@ -1,49 +1,49 @@
|
||||
local distro = "opensuse-tumbleweed";
|
||||
local distro = 'opensuse-tumbleweed';
|
||||
local distro_name = 'OpenSUSE Tumbleweed';
|
||||
local distro_docker = 'opensuse/tumbleweed';
|
||||
|
||||
local submodules = {
|
||||
name: 'submodules',
|
||||
image: 'drone/git',
|
||||
commands: ['git fetch --tags', 'git submodule update --init --recursive --depth=1']
|
||||
name: 'submodules',
|
||||
image: 'drone/git',
|
||||
commands: ['git fetch --tags', 'git submodule update --init --recursive --depth=1'],
|
||||
};
|
||||
|
||||
local zypper(arch) = 'zypper -n --cache-dir /cache/'+distro+'/'+arch+'/${DRONE_STAGE_MACHINE} ';
|
||||
local zypper(arch) = 'zypper -n --cache-dir /cache/' + distro + '/' + arch + '/${DRONE_STAGE_MACHINE} ';
|
||||
|
||||
local rpm_pipeline(image, buildarch='amd64', rpmarch='x86_64', jobs=6) = {
|
||||
kind: 'pipeline',
|
||||
type: 'docker',
|
||||
name: distro_name + ' (' + rpmarch + ')',
|
||||
platform: { arch: buildarch },
|
||||
steps: [
|
||||
submodules,
|
||||
{
|
||||
name: 'build',
|
||||
image: image,
|
||||
environment: {
|
||||
SSH_KEY: { from_secret: "SSH_KEY" },
|
||||
RPM_BUILD_NCPUS: jobs
|
||||
},
|
||||
commands: [
|
||||
'echo "Building on ${DRONE_STAGE_MACHINE}"',
|
||||
zypper(rpmarch) + 'up',
|
||||
zypper(rpmarch) + 'install rpm-build python38-pip ccache git',
|
||||
#zypper(rpmarch) + 'install rpm-build=4.17.0-1.1 python38-pip ccache git',
|
||||
'pip3 install git-archive-all',
|
||||
'pkg_src_base="$(rpm -q --queryformat=\'%{NAME}-%{VERSION}\n\' --specfile SPECS/lokinet.spec | head -n 1)"',
|
||||
'git-archive-all --prefix $pkg_src_base/ SOURCES/$pkg_src_base.src.tar.gz',
|
||||
zypper(rpmarch) + 'addrepo https://rpm.oxen.io/opensuse/tumbleweed.repo',
|
||||
zypper(rpmarch) + '--gpg-auto-import-keys refresh -r oxen',
|
||||
zypper(rpmarch) + 'install $(rpmspec --parse SPECS/lokinet.spec | grep BuildRequires | sed -e "s/^BuildRequires: *//")',
|
||||
'if [ -n "$CCACHE_DIR" ]; then mkdir -pv ~/.cache; ln -sv "$CCACHE_DIR" ~/.cache/ccache; fi',
|
||||
'rpmbuild --define "_topdir $(pwd)" -bb SPECS/lokinet.spec',
|
||||
'./SPECS/ci-upload.sh ' + distro + ' ' + rpmarch,
|
||||
],
|
||||
}
|
||||
]
|
||||
kind: 'pipeline',
|
||||
type: 'docker',
|
||||
name: distro_name + ' (' + rpmarch + ')',
|
||||
platform: { arch: buildarch },
|
||||
steps: [
|
||||
submodules,
|
||||
{
|
||||
name: 'build',
|
||||
image: image,
|
||||
environment: {
|
||||
SSH_KEY: { from_secret: 'SSH_KEY' },
|
||||
RPM_BUILD_NCPUS: jobs,
|
||||
},
|
||||
commands: [
|
||||
'echo "Building on ${DRONE_STAGE_MACHINE}"',
|
||||
zypper(rpmarch) + 'up',
|
||||
zypper(rpmarch) + 'install rpm-build python38-pip ccache git',
|
||||
//zypper(rpmarch) + 'install rpm-build=4.17.0-1.1 python38-pip ccache git',
|
||||
'pip3 install git-archive-all',
|
||||
'pkg_src_base="$(rpm -q --queryformat=\'%{NAME}-%{VERSION}\n\' --specfile SPECS/lokinet.spec | head -n 1)"',
|
||||
'git-archive-all --prefix $pkg_src_base/ SOURCES/$pkg_src_base.src.tar.gz',
|
||||
zypper(rpmarch) + 'addrepo https://rpm.oxen.io/opensuse/tumbleweed.repo',
|
||||
zypper(rpmarch) + '--gpg-auto-import-keys refresh -r oxen',
|
||||
zypper(rpmarch) + 'install $(rpmspec --parse SPECS/lokinet.spec | grep BuildRequires | sed -e "s/^BuildRequires: *//")',
|
||||
'if [ -n "$CCACHE_DIR" ]; then mkdir -pv ~/.cache; ln -sv "$CCACHE_DIR" ~/.cache/ccache; fi',
|
||||
'rpmbuild --define "_topdir $(pwd)" -bb SPECS/lokinet.spec',
|
||||
'./SPECS/ci-upload.sh ' + distro + ' ' + rpmarch,
|
||||
],
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
[
|
||||
rpm_pipeline(distro_docker),
|
||||
// rpm_pipeline("arm64v8/" + distro_docker, buildarch='arm64', rpmarch="aarch64", jobs=4)
|
||||
rpm_pipeline(distro_docker),
|
||||
// rpm_pipeline("arm64v8/" + distro_docker, buildarch='arm64', rpmarch="aarch64", jobs=4)
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user