Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…obotcontrol into HEAD
  • Loading branch information
jadonk committed Dec 2, 2023
2 parents 985e0cf + 1da6e6b commit 1606554
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
build:
stage: build
parallel:
matrix:
- IMAGE: debian-build
TAG: [docker-amd64, docker-aarch64-ci, docker-armhf]
- IMAGE: ubuntu-build
TAG: [docker-riscv64-ci]
image: beagle/${IMAGE}
tags:
- ${TAG}
script:
- make package
- mkdir -p public
- cp ../librobotcontrol_*.deb public/
artifacts:
paths:
- public

pages:
image: beagle/debian-build
stage: deploy
dependencies:
- "build: [debian-build, docker-amd64]"
- "build: [debian-build, docker-aarch64-ci]"
- "build: [debian-build, docker-armhf]"
- "build: [ubuntu-build, docker-riscv64-ci]"
script:
- apindex public
artifacts:
paths:
- public

0 comments on commit 1606554

Please sign in to comment.