1
0
mirror of https://gitlab.alpinelinux.org/alpine/cloud/tiny-cloud.git synced 2025-12-14 19:02:45 +03:00

dynamically generate list of supported clouds

This commit is contained in:
Jake Buchholz Göktürk 2025-06-11 15:59:21 +00:00
parent 92ff6fa94e
commit 0054493216
3 changed files with 10 additions and 5 deletions

View File

@ -18,7 +18,7 @@ test-oksh:
extends: test-default extends: test-default
before_script: before_script:
- apk add oksh - apk add oksh
- ln -sf /bin/oksh /bin/sh - ln -sf /usr/bin/oksh /bin/sh
# disabled - yash hates 'local' # disabled - yash hates 'local'
#test-yash: #test-yash:
@ -42,4 +42,3 @@ test-install:
tags: tags:
- docker-alpine - docker-alpine
- x86_64 - x86_64

View File

@ -1,11 +1,17 @@
# CHANGELOG # CHANGELOG
## 2025-06-31 - Tiny Cloud v3.2.1 ## 2025-06-11 - Tiny Cloud v3.2.2
* Fix `Makefile` to dynamically generate the list of clouds, allowing the new
code for DigitalOcean (and future additional clouds) to also be installed.
* Fix testing with `oksh`.
## 2025-05-31 - Tiny Cloud v3.2.1
* Fix cloud-config user creation -- `users` would reuse values from previous * Fix cloud-config user creation -- `users` would reuse values from previous
user if unset. user if unset.
## 2025-06-30 - Tiny Cloud v3.2.0 ## 2025-05-30 - Tiny Cloud v3.2.0
* Initial support for `digitalocean` cloud provider * Initial support for `digitalocean` cloud provider

View File

@ -1,6 +1,6 @@
PREFIX ?= / PREFIX ?= /
CLOUDS = aws azure gcp hetzner incus nocloud oci scaleway CLOUDS = $(sort $(notdir $(patsubst %/,%,$(wildcard lib/tiny-cloud/cloud/*/))))
SUBPACKAGES = core openrc $(CLOUDS) SUBPACKAGES = core openrc $(CLOUDS)