aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 04b206711c863de5c958e56fd0392ee2171bce7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
stages:
  - build

build:
  stage: build
  image: fedora:latest
  before_script:
    - dnf install -y rpm-build rpmdevtools dnf-plugins-core
  script:
    - rpmdev-setuptree
    - cp ./rpmbuild/SPECS/gnunet-fedora.spec ~/rpmbuild/SPECS/gnunet.spec
    - rpmbuild -bs ~/rpmbuild/SPECS/gnunet.spec
    - dnf builddep ~/rpmbuild/SRPMS/gnunet-$(cat ~/rpmbuild/SPECS/gnunet.spec | grep Version |  awk '{ print $2 }')~$(rpm --eval %{?dist}).src.rpm
    - rpmbuild --rebuild ~/rpmbuild/SRPMS/gnunet-$(cat ~/rpmbuild/SPECS/gnunet.spec | grep Version |  awk '{ print $2 }')~$(rpm --eval %{?dist}).src.rpm
    - dnf install -y ~/rpmbuild/SRPMS/gnunet-$(cat ~/rpmbuild/SPECS/gnunet.spec | grep Version |  awk '{ print $2 }')~$(rpm --eval %{?dist}).src.rpm