Compare commits

..

1 Commits

Author SHA1 Message Date
baf2b405aa feat: initial commit
Some checks failed
Build / build (pull_request) Failing after 33s
- add Makefile
- add gitea workflows
- add Dockerfile
- pass through trusted ca certificates
2024-09-08 01:09:51 +10:00
2 changed files with 6 additions and 10 deletions

View File

@ -7,7 +7,7 @@ jobs:
build:
runs-on: almalinux-8
container:
image: git.query.consul/unkin/almalinux8:latest
image: docker:dind
options: --privileged
volumes:
- /etc/pki/tls/certs/ca-bundle.crt:/etc/pki/tls/certs/ca-bundle.crt
@ -16,10 +16,8 @@ jobs:
steps:
- name: Set up environment
run: |
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
dnf module enable -y nodejs:20
dnf install -y docker-ce-cli
dnf install -y make bash git nodejs
apk add --no-cache make bash git nodejs
update-ca-certificates
- name: Checkout code
uses: actions/checkout@v3

View File

@ -9,7 +9,7 @@ jobs:
build:
runs-on: almalinux-8
container:
image: git.query.consul/unkin/almalinux8:latest
image: docker:dind
options: --privileged
volumes:
- /etc/pki/tls/certs/ca-bundle.crt:/etc/pki/tls/certs/ca-bundle.crt
@ -18,10 +18,8 @@ jobs:
steps:
- name: Set up environment
run: |
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
dnf module enable -y nodejs:20
dnf install -y docker-ce-cli
dnf install -y make bash git nodejs
apk add --no-cache make bash git nodejs
update-ca-certificates
- name: Checkout code
uses: actions/checkout@v3