Skip to content
Snippets Groups Projects
Commit b1d80679 authored by Kevin Daudt's avatar Kevin Daudt :computer:
Browse files

.gitlab-ci.yml: add ci jobs to build changed aports

Closes !74
parent 8814d1fe
No related branches found
No related tags found
No related merge requests found
stages:
- lint
- build
# Make sure master points to the correct upstream commit
before_script:
......@@ -18,3 +19,42 @@ lint:
tags:
- docker-alpine
- x86_64
.build:
stage: build
image: alpinelinux/alpine-gitlab-ci:latest
script:
- build.sh
only:
- merge_requests
build-x86_64:
extends: .build
tags:
- docker-alpine
- ci-build
- x86_64
build-x86:
extends: .build
image:
name: alpinelinux/alpine-gitlab-ci:latest-x86
entrypoint: ["linux32", "sh", "-c"]
tags:
- docker-alpine
- ci-build
- x86
build-s390x:
extends: .build
tags:
- docker-alpine
- ci-build
- s390x
build-ppc64le:
extends: .build
tags:
- docker-alpine
- ci-build
- ppc64le
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment