summaryrefslogtreecommitdiffstats
path: root/.drone.yml
blob: c0001dbb2773235f47b739a861d3b402aa6f8321 (plain)
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
kind: pipeline
name: gcc/amd64/linux

platform:
  arch: amd64

steps:
- name: build
  image: gcc
  pull: true
  commands:
  - ./tools/ci-build.sh --cores=4
  - make check

---
kind: pipeline
name: gcc/arm64/linux

platform:
  arch: arm64

steps:
- name: build
  image: gcc
  pull: true
  commands:
  - ./tools/ci-build.sh --cores=4
  - make check