Compare commits
1 Commits
v0.1.3
..
b29418d1b5
| Author | SHA1 | Date | |
|---|---|---|---|
| b29418d1b5 |
@@ -15,30 +15,17 @@ steps:
|
|||||||
depends_on: [test]
|
depends_on: [test]
|
||||||
|
|
||||||
- name: release
|
- name: release
|
||||||
image: git.unkin.net/unkin/almalinux9-base:20260325
|
image: alpine/curl
|
||||||
environment:
|
environment:
|
||||||
DRONECI_PASSWORD:
|
DRONECI_PASSWORD:
|
||||||
from_secret: DRONECI_PASSWORD
|
from_secret: DRONECI_PASSWORD
|
||||||
commands:
|
commands:
|
||||||
- |
|
- |
|
||||||
PREV_TAG=$(git describe --tags --abbrev=0 HEAD^ 2>/dev/null || echo "")
|
RELEASE_ID=$(curl -sf -X POST "https://git.unkin.net/api/v1/repos/${CI_REPO}/releases" \
|
||||||
if [ -n "$PREV_TAG" ]; then
|
|
||||||
NOTES=$(git log "${PREV_TAG}..${CI_COMMIT_TAG}" --merges --pretty=format:"- %s")
|
|
||||||
else
|
|
||||||
NOTES=$(git log --merges --pretty=format:"- %s")
|
|
||||||
fi
|
|
||||||
BODY=$(printf '%s' "$NOTES" | sed 's/"/\\"/g; s/$/\\n/' | tr -d '\n')
|
|
||||||
RELEASE_RESPONSE=$(curl -sf -X POST "https://git.unkin.net/api/v1/repos/${CI_REPO}/releases" \
|
|
||||||
-u "droneci:$DRONECI_PASSWORD" \
|
-u "droneci:$DRONECI_PASSWORD" \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-d "{\"tag_name\":\"${CI_COMMIT_TAG}\",\"name\":\"${CI_COMMIT_TAG}\",\"body\":\"${BODY}\"}")
|
-d "{\"tag_name\":\"${CI_COMMIT_TAG}\",\"name\":\"${CI_COMMIT_TAG}\"}" \
|
||||||
echo "Release API response: ${RELEASE_RESPONSE}"
|
| grep -o '"id":[0-9]*' | head -1 | cut -d: -f2)
|
||||||
RELEASE_ID=$(echo "${RELEASE_RESPONSE}" | grep -o '"id":[0-9]*' | head -1 | cut -d: -f2)
|
|
||||||
if [ -z "$RELEASE_ID" ]; then
|
|
||||||
echo "ERROR: failed to obtain release ID" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "Release ID: ${RELEASE_ID}"
|
|
||||||
curl -sf -X POST "https://git.unkin.net/api/v1/repos/${CI_REPO}/releases/${RELEASE_ID}/assets" \
|
curl -sf -X POST "https://git.unkin.net/api/v1/repos/${CI_REPO}/releases/${RELEASE_ID}/assets" \
|
||||||
-u "droneci:$DRONECI_PASSWORD" \
|
-u "droneci:$DRONECI_PASSWORD" \
|
||||||
-F "attachment=@node-lookup"
|
-F "attachment=@node-lookup"
|
||||||
|
|||||||
+4
-4
@@ -354,11 +354,11 @@ func TestAllFactsForNode_QueryContainsCertname(t *testing.T) {
|
|||||||
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
receivedQuery = r.URL.Query().Get("query")
|
receivedQuery = r.URL.Query().Get("query")
|
||||||
w.Header().Set("Content-Type", "application/json")
|
w.Header().Set("Content-Type", "application/json")
|
||||||
_ = json.NewEncoder(w).Encode([]fact{})
|
json.NewEncoder(w).Encode([]fact{})
|
||||||
}))
|
}))
|
||||||
defer srv.Close()
|
defer srv.Close()
|
||||||
|
|
||||||
_, _ = allFactsForNode(srv.URL+"/pdb/query/v4/facts", "mynode.example.com")
|
allFactsForNode(srv.URL+"/pdb/query/v4/facts", "mynode.example.com")
|
||||||
if !strings.Contains(receivedQuery, "mynode.example.com") {
|
if !strings.Contains(receivedQuery, "mynode.example.com") {
|
||||||
t.Fatalf("expected certname in query, got: %s", receivedQuery)
|
t.Fatalf("expected certname in query, got: %s", receivedQuery)
|
||||||
}
|
}
|
||||||
@@ -405,10 +405,10 @@ func TestRun_AllFacts_PrintsSortedByName(t *testing.T) {
|
|||||||
cfg := config{PuppetDBURL: srv.URL + "/pdb/query/v4/facts", RoleFact: "enc_role"}
|
cfg := config{PuppetDBURL: srv.URL + "/pdb/query/v4/facts", RoleFact: "enc_role"}
|
||||||
err := run(cfg, "node1", "", "", "", false, false, false, false, false, false, true)
|
err := run(cfg, "node1", "", "", "", false, false, false, false, false, false, true)
|
||||||
|
|
||||||
_ = w.Close()
|
w.Close()
|
||||||
os.Stdout = old
|
os.Stdout = old
|
||||||
var buf strings.Builder
|
var buf strings.Builder
|
||||||
_, _ = io.Copy(&buf, r)
|
io.Copy(&buf, r)
|
||||||
out := buf.String()
|
out := buf.String()
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
Reference in New Issue
Block a user