Changed Name of arm64.yaml to linux_arm64.yaml and added arm64 docker image workflow
Some checks failed
Build ARM64 Linux / build-arm64 (push) Has been cancelled
Build Linux x64 / build-linux-x64 (push) Has been cancelled
Build Windows x64 / build-windows-x64 (push) Has been cancelled
Build Docker Linux ARM64 / build-docker-linux-x64 (push) Failing after 5m44s
Build Docker Linux x64 / build-docker-linux-x64 (push) Failing after 56s
Some checks failed
Build ARM64 Linux / build-arm64 (push) Has been cancelled
Build Linux x64 / build-linux-x64 (push) Has been cancelled
Build Windows x64 / build-windows-x64 (push) Has been cancelled
Build Docker Linux ARM64 / build-docker-linux-x64 (push) Failing after 5m44s
Build Docker Linux x64 / build-docker-linux-x64 (push) Failing after 56s
This commit is contained in:
26
.gitea/workflows/linux_arm64_docker.yaml
Normal file
26
.gitea/workflows/linux_arm64_docker.yaml
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
name: Build Docker Linux ARM64
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-docker-linux-x64:
|
||||||
|
runs-on: [self-hosted, linux, arm64, docker]
|
||||||
|
steps:
|
||||||
|
- name: Install packages
|
||||||
|
run: apk add --no-cache git curl wget unzip bash nodejs npm docker
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Build Linux ARM64 Docker Image
|
||||||
|
run: |
|
||||||
|
docker buildx build \
|
||||||
|
--platform linux/arm64 \
|
||||||
|
-t myapp:linux-arm64 \
|
||||||
|
--load ./CouchLog/CouchLog.sln
|
||||||
@@ -10,7 +10,7 @@ jobs:
|
|||||||
runs-on: [self-hosted, linux, arm64, linux64-docker, docker]
|
runs-on: [self-hosted, linux, arm64, linux64-docker, docker]
|
||||||
steps:
|
steps:
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: apk add --no-cache git curl wget unzip bash nodejs npm
|
run: apk add --no-cache git curl wget unzip bash nodejs npm docker
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|||||||
Reference in New Issue
Block a user