feat: add archlinux image
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: Julien CLEMENT <julien.clement@epita.fr>
This commit is contained in:
parent
81ae23e213
commit
58691bf35a
22
.drone.yml
22
.drone.yml
@ -1,11 +1,31 @@
|
|||||||
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: build
|
name: build-alpine
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: publish
|
- name: publish
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
repo: turboregistry:5000/juju/turbo-ci
|
repo: turboregistry:5000/juju/turbo-ci
|
||||||
|
dockerfile: alpine/Dockerfile
|
||||||
|
tags: latest
|
||||||
|
insecure: true
|
||||||
|
registry: turboregistry:5000
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: build-arch
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: publish
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
repo: turboregistry:5000/juju/turbo-ci-arch
|
||||||
|
dockerfile: arch/Dockerfile
|
||||||
tags: latest
|
tags: latest
|
||||||
insecure: true
|
insecure: true
|
||||||
registry: turboregistry:5000
|
registry: turboregistry:5000
|
||||||
|
8
arch/Dockerfile
Normal file
8
arch/Dockerfile
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
FROM archlinux:base-devel
|
||||||
|
|
||||||
|
RUN pacman -Syy
|
||||||
|
|
||||||
|
RUN pacman -Sy --noconfirm gcc clang \
|
||||||
|
base-devel meson cmake autoconf autoconf-archive \
|
||||||
|
musl \
|
||||||
|
llvm
|
Loading…
Reference in New Issue
Block a user