From f8c49c82c87fab06e0744968aaf52ec3b4973d08 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Mon, 18 Sep 2023 14:02:38 +0200 Subject: [PATCH] fix: skip "abra-integration-test-recipe" also --- pkg/catalogue/catalogue.go | 71 +++++++++++++++++++------------------- 1 file changed, 36 insertions(+), 35 deletions(-) diff --git a/pkg/catalogue/catalogue.go b/pkg/catalogue/catalogue.go index 88cf13cb..5a603f5c 100644 --- a/pkg/catalogue/catalogue.go +++ b/pkg/catalogue/catalogue.go @@ -15,41 +15,42 @@ import ( // CatalogueSkipList is all the repos that are not recipes. var CatalogueSkipList = map[string]bool{ - "abra": true, - "abra-apps": true, - "abra-aur": true, - "abra-bash": true, - "abra-capsul": true, - "abra-gandi": true, - "abra-hetzner": true, - "apps": true, - "aur-abra-git": true, - "auto-recipes-catalogue-json": true, - "auto-mirror": true, - "backup-bot": true, - "backup-bot-two": true, - "beta.coopcloud.tech": true, - "comrade-renovate-bot": true, - "coopcloud.tech": true, - "coturn": true, - "docker-cp-deploy": true, - "docker-dind-bats-kcov": true, - "docs.coopcloud.tech": true, - "drone-abra": true, - "example": true, - "gardening": true, - "go-abra": true, - "organising": true, - "pyabra": true, - "radicle-seed-node": true, - "recipes-catalogue-json": true, - "recipes-wishlist": true, - "recipes.coopcloud.tech": true, - "stack-ssh-deploy": true, - "swarm-cronjob": true, - "tagcmp": true, - "traefik-cert-dumper": true, - "tyop": true, + "abra": true, + "abra-apps": true, + "abra-aur": true, + "abra-bash": true, + "abra-capsul": true, + "abra-gandi": true, + "abra-hetzner": true, + "abra-integration-test-recipe": true, + "apps": true, + "aur-abra-git": true, + "auto-mirror": true, + "auto-recipes-catalogue-json": true, + "backup-bot": true, + "backup-bot-two": true, + "beta.coopcloud.tech": true, + "comrade-renovate-bot": true, + "coopcloud.tech": true, + "coturn": true, + "docker-cp-deploy": true, + "docker-dind-bats-kcov": true, + "docs.coopcloud.tech": true, + "drone-abra": true, + "example": true, + "gardening": true, + "go-abra": true, + "organising": true, + "pyabra": true, + "radicle-seed-node": true, + "recipes-catalogue-json": true, + "recipes-wishlist": true, + "recipes.coopcloud.tech": true, + "stack-ssh-deploy": true, + "swarm-cronjob": true, + "tagcmp": true, + "traefik-cert-dumper": true, + "tyop": true, } // EnsureCatalogue ensures that the catalogue is cloned locally & present.