Skip to content

Commit

Permalink
Humble beginnings of a CI pipeline (#77)
Browse files Browse the repository at this point in the history
At this time just build the three targets on pre-existing VMs, in the future
we'll try more targets, native compilation and proper tests.

Many thanks to @mjwolf for giving awesome support.
  • Loading branch information
haesbaert authored Oct 14, 2024
1 parent 3af1c44 commit 2bf6fe3
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
---
# $yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json
steps:
- label: "Build"
command: "make"
- label: "build amd64 in docker"
key: build_docker
command: "make docker"
agents:
image: family/core-ubuntu-2204
provider: gcp
machineType: n2-standard-2

- label: "build amd64 in a centos7 container"
key: make_centos7
command: "make centos7"
agents:
image: family/core-ubuntu-2204
provider: gcp
machineType: n2-standard-2

- label: "build arm64 cross-compiled in docker"
key: make_docker_cross_arm64
command: "make docker-cross-arm64"
agents:
image: family/core-ubuntu-2204
provider: gcp
machineType: n2-standard-2

0 comments on commit 2bf6fe3

Please sign in to comment.