chore: fix Drone build, ignore auto-recipes-catalogue-json
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
3wc 2023-01-15 18:12:14 -08:00
parent 6c93f980dc
commit 4f055096e9
3 changed files with 37 additions and 37 deletions

View File

@ -68,6 +68,7 @@ steps:
from_secret: git_coopcloud_tech_token_3wc from_secret: git_coopcloud_tech_token_3wc
repo: git.coopcloud.tech/coop-cloud/abra repo: git.coopcloud.tech/coop-cloud/abra
tags: latest tags: latest
registry: git.coopcloud.tech
when: when:
event: event:
exclude: exclude:

View File

@ -20,42 +20,41 @@ import (
// CatalogueSkipList is all the repos that are not recipes. // CatalogueSkipList is all the repos that are not recipes.
var CatalogueSkipList = map[string]bool{ var CatalogueSkipList = map[string]bool{
"abra": true, "abra": true,
"abra-apps": true, "abra-apps": true,
"abra-aur": true, "abra-aur": true,
"abra-bash": true, "abra-bash": true,
"abra-capsul": true, "abra-capsul": true,
"abra-gandi": true, "abra-gandi": true,
"abra-hetzner": true, "abra-hetzner": true,
"apps": true, "apps": true,
"aur-abra-git": true, "aur-abra-git": true,
"auto-apps-json": true, "auto-recipes-catalogue-json": true,
"auto-mirror": true, "auto-mirror": true,
"backup-bot": true, "backup-bot": true,
"backup-bot-two": true, "backup-bot-two": true,
"beta.coopcloud.tech": true, "beta.coopcloud.tech": true,
"comrade-renovate-bot": true, "comrade-renovate-bot": true,
"coopcloud.tech": true, "coopcloud.tech": true,
"coturn": true, "coturn": true,
"docker-cp-deploy": true, "docker-cp-deploy": true,
"docker-dind-bats-kcov": true, "docker-dind-bats-kcov": true,
"docs.coopcloud.tech": true, "docs.coopcloud.tech": true,
"drone-abra": true, "drone-abra": true,
"example": true, "example": true,
"gardening": true, "gardening": true,
"go-abra": true, "go-abra": true,
"organising": true, "organising": true,
"outline-with-patch": true, "pyabra": true,
"pyabra": true, "radicle-seed-node": true,
"radicle-seed-node": true, "recipes-catalogue-json": true,
"recipes-catalogue-json": true, "recipes-wishlist": true,
"recipes-wishlist": true, "recipes.coopcloud.tech": true,
"recipes.coopcloud.tech": true, "stack-ssh-deploy": true,
"stack-ssh-deploy": true, "swarm-cronjob": true,
"swarm-cronjob": true, "tagcmp": true,
"tagcmp": true, "traefik-cert-dumper": true,
"traefik-cert-dumper": true, "tyop": true,
"tyop": true,
} }
var catalogueGenerateCommand = cli.Command{ var catalogueGenerateCommand = cli.Command{

View File

@ -8,8 +8,8 @@ import (
"os" "os"
"path" "path"
"path/filepath" "path/filepath"
"strings"
"strconv" "strconv"
"strings"
"time" "time"
"coopcloud.tech/abra/pkg/client" "coopcloud.tech/abra/pkg/client"