From 791027808fc2248632f54afbfebc019f6008d380 Mon Sep 17 00:00:00 2001 From: surtur Date: Sun, 12 Apr 2020 23:49:12 +0200 Subject: [PATCH] removing testing pipeline in .drone.ml * proved that the issue was in the image OS not being up to date enough to include the needed pkg, which was causing the builds to fail --- .drone.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.drone.yml b/.drone.yml index eea116a..2b65a13 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,20 +1,3 @@ ---- -kind: pipeline -name: gcc - -platform: - arch: amd64 - -steps: -- name: build - pull: always - image: immawanderer/archlinux-cdev:latest - commands: - - pacman -Syu --noconfirm --needed gcc cmake - - cmake CMakeLists.txt - - make - - --- kind: pipeline name: testing-amd64