-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
38 lines (37 loc) · 978 Bytes
/
.drone.yml
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
kind: pipeline
name: default
steps:
- name: build gcc [latest]
image: gcc:latest
commands:
- apt-get update -qq
- apt-get install -y libusb-1.0-0 libusb-1.0-0-dev figlet
- gcc --version | head -n1 | figlet
- make config.h
- make
- name: gitea_release
image: plugins/gitea-release
settings:
api_key: 666d6a9c0d97530b7ba8a052ab948def6a2046d6
base_url: https://git.goatpr0n.de
files: actionpro
title: Release ${DRONE_SEMVER}
when:
event:
- tag
- name: build gcc12
image: gcc:12
commands:
- apt-get update -qq
- apt-get install -y libusb-1.0-0 libusb-1.0-0-dev figlet
- gcc --version | head -n1 | figlet
- make config.h
- make
- name: build gcc11
image: gcc:11
commands:
- apt-get update -qq
- apt-get install -y libusb-1.0-0 libusb-1.0-0-dev figlet
- gcc --version | head -n1 | figlet
- make config.h
- make