Add Gitea Actions workflow for automated builds
Some checks failed
Build Android Emulator Images / build (android-30) (push) Failing after 5s

This commit is contained in:
Neon Vortex
2025-11-26 12:22:25 -05:00
parent 6bf51f101d
commit df78b01c85
9 changed files with 325 additions and 83 deletions

View File

@@ -1,5 +1,5 @@
SHELL := /usr/bin/env bash
VERSIONS ?= android-16 android-17 android-18 android-19 android-21 android-22 android-23 android-24 android-25 android-26 android-27 android-28
VERSIONS ?= android-29 android-30 android-31 android-32 android-33 android-34
generate:
for version in $(VERSIONS); do \
@@ -37,8 +37,10 @@ tag: generate
$(MAKE) -C build/$$version tag; \
done
REGISTRY ?= images.caffeinetux.com
login:
@docker login -u "$(DOCKER_USER)" -p "$(DOCKER_PASS)" "$(PROXY)"
@docker login -u "$(DOCKER_USER)" -p "$(DOCKER_PASS)" "$(REGISTRY)"
push: login
for version in $(VERSIONS); do \