Initial commit

This commit is contained in:
mike 2024-06-20 21:47:06 +01:00
parent bfec8bdea6
commit 4d8c6e06e6
3 changed files with 39 additions and 4 deletions

29
.woodpecker.yml Normal file
View file

@ -0,0 +1,29 @@
steps:
- name: build
when:
- branch: main
event: push
- event: tag
image: docker
commands:
- docker build -t $CI_REG_HOST:$CI_REG_PORT/$CI_REPO_OWNER/$CI_REPO_NAME:latest .
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- name: push
when:
- branch: main
event: push
- event: tag
depends_on: build
image: docker
environment:
REG_USER:
from_secret: CI_REG_USER
REG_TOKEN:
from_secret: CI_REG_TOKEN
commands:
- docker login $CI_REG_HOST:$CI_REG_PORT --username $REG_USER --password $REG_TOKEN
- docker push $CI_REG_HOST:$CI_REG_PORT/$CI_REPO_OWNER/$CI_REPO_NAME:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock

5
Dockerfile Normal file
View file

@ -0,0 +1,5 @@
FROM dockcross/manylinux2014-x64
ENV DEFAULT_DOCKCROSS_IMAGE manylinux2014-fuse-x64
RUN sudo yum install -y fuse fuse-devel

View file

@ -1,4 +1,5 @@
# manylinux2014-fuse-x64
dockcross/manylinux2014-x64 with fuse, fuse-devel
for appimage generation
# manylinux2014-fuse-x64
`dockcross/manylinux2014-x64` with `fuse` and `fuse-devel` for AppImage generation
[![status-badge](https://wci.alveus.dev/api/badges/19/status.svg)](https://wci.alveus.dev/repos/19)