summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Vereshchagin <evvers@ya.ru>2021-01-06 11:50:09 +0000
committerLuca Boccassi <luca.boccassi@gmail.com>2021-01-07 13:09:13 +0000
commit15d98deb480149db98cbad7873185f5db8e98b97 (patch)
tree13979851303756d5bc9f176dbf8a726b2e7da616
parent79a998fa21044d2d47392aa1db8015689ce1216e (diff)
downloadsystemd-15d98deb480149db98cbad7873185f5db8e98b97.tar.gz
ci: turn off Azure Pipelines
-rw-r--r--README.md1
-rw-r--r--azure-pipelines.yml15
-rwxr-xr-xtravis-ci/managers/fuzzbuzz.sh21
3 files changed, 0 insertions, 37 deletions
diff --git a/README.md b/README.md
index e8703ea6ef..d94803282d 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,6 @@ System and Service Manager
[![CentOS CI - CentOS 7](https://jenkins-systemd.apps.ocp.ci.centos.org/buildStatus/icon?subject=CentOS%20CI%20-%20CentOS%207&job=upstream-centos7)](https://jenkins-systemd.apps.ocp.ci.centos.org/job/upstream-centos7/)<br/>
[![CentOS CI - Arch](https://jenkins-systemd.apps.ocp.ci.centos.org/buildStatus/icon?subject=CentOS%20CI%20-%20Arch&job=upstream-vagrant-archlinux)](https://jenkins-systemd.apps.ocp.ci.centos.org/job/upstream-vagrant-archlinux/)<br/>
[![CentOS CI - Arch (sanitizers)](https://jenkins-systemd.apps.ocp.ci.centos.org/buildStatus/icon?subject=CentOS%20CI%20-%20Arch%20(sanitizers)&job=upstream-vagrant-archlinux-sanitizers)](https://jenkins-systemd.apps.ocp.ci.centos.org/job/upstream-vagrant-archlinux-sanitizers/)<br/>
-[![Build Status](https://dev.azure.com/evvers/systemd-systemd/_apis/build/status/systemd.systemd?branchName=master)](https://dev.azure.com/evvers/systemd-systemd/_build/latest?definitionId=1&branchName=master)<br/>
[![Fossies codespell report](https://fossies.org/linux/test/systemd-master.tar.gz/codespell.svg)](https://fossies.org/linux/test/systemd-master.tar.gz/codespell.html)</br>
[![Packaging status](https://repology.org/badge/tiny-repos/systemd.svg)](https://repology.org/project/systemd/versions)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
deleted file mode 100644
index b321962664..0000000000
--- a/azure-pipelines.yml
+++ /dev/null
@@ -1,15 +0,0 @@
-trigger:
-- master
-
-jobs:
-- job: FuzzBuzz
- displayName: FuzzBuzz
-
- pool:
- vmImage: 'ubuntu-latest'
-
- steps:
- - script: |
- set -e
- ./travis-ci/managers/fuzzbuzz.sh
- displayName: 'This is where it gets darker'
diff --git a/travis-ci/managers/fuzzbuzz.sh b/travis-ci/managers/fuzzbuzz.sh
deleted file mode 100755
index b69197f0b5..0000000000
--- a/travis-ci/managers/fuzzbuzz.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-
-set -e
-set -x
-set -u
-
-REPO_ROOT=${REPO_ROOT:-$(pwd)}
-
-sudo bash -c "echo 'deb-src http://archive.ubuntu.com/ubuntu/ $(lsb_release -cs) main restricted universe multiverse' >>/etc/apt/sources.list"
-sudo apt-get update -y
-sudo apt-get build-dep systemd -y
-sudo apt-get install -y ninja-build python3-pip python3-setuptools quota
-# The following should be dropped when debian packaging has been updated to include them
-sudo apt-get install -y libfdisk-dev libp11-kit-dev libssl-dev libpwquality-dev
-pip3 install meson
-
-cd $REPO_ROOT
-export PATH="$HOME/.local/bin/:$PATH"
-tools/oss-fuzz.sh
-./out/fuzz-unit-file -max_total_time=5
-git clean -dxff