You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
411 B
30 lines
411 B
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:
|
|
- export CFLAGS="-DITERATE=400 -DPAIRS_S=100 -DITERATIONS=24"
|
|
- ./tools/ci-build.sh --cores=4
|
|
- make check
|