Skip to content

Commit 228217a

Browse files
authored
refactor: Removed unused workflow (#531)
Removed create-debugging-artifact workflow as this was never run before. [TNZ-33527] - [Kiln]: Remove unused Github workflows from Kiln Repo JIRA Link: https://vmw-jira.broadcom.net/browse/TNZ-33527 Date: 06-Mar-2025 Authored-by: Ramkumar Vengadakrishnan <ramkumar.vengadakrishnan@broadcom.com>
2 parents 4b43d4e + bd3a174 commit 228217a

1 file changed

Lines changed: 0 additions & 62 deletions

File tree

Lines changed: 0 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +0,0 @@
1-
name: create debugging artifact
2-
3-
on:
4-
workflow_dispatch:
5-
inputs:
6-
description:
7-
description: |
8-
run unit + acceptance test and then upload an artifact for debugging purposes
9-
required: false
10-
default: true
11-
type: boolean
12-
13-
permissions:
14-
contents: write
15-
16-
jobs:
17-
create_artifact:
18-
name: "upload kiln artifact"
19-
runs-on: ubuntu-latest
20-
steps:
21-
- name: Checkout
22-
uses: actions/checkout@v4
23-
with:
24-
fetch-depth: 0
25-
submodules: 'recursive'
26-
token: ${{ secrets.RELEEN_GITHUB_TOKEN }}
27-
28-
- name: Set up Go
29-
uses: actions/setup-go@v5
30-
with:
31-
go-version-file: go.mod
32-
check-latest: true
33-
34-
- name: Build
35-
run: |
36-
go build ./...
37-
ls -alth
38-
39-
- name: Unit Test
40-
env:
41-
RELEEN_GITHUB_TOKEN: ${{ secrets.RELEEN_GITHUB_TOKEN }}
42-
run: |
43-
export GITHUB_ACCESS_TOKEN="${RELEEN_GITHUB_TOKEN}"
44-
go test ./...
45-
46-
- name: Acceptance Tests
47-
env:
48-
CGO_ENABLED: '0'
49-
RELEEN_GITHUB_TOKEN: ${{ secrets.RELEEN_GITHUB_TOKEN }}
50-
run: |
51-
set -euo pipefail
52-
export GITHUB_ACCESS_TOKEN="${RELEEN_GITHUB_TOKEN}"
53-
54-
go test --run '(using_kiln|baking_a_tile|generating_release_notes|updating_)' \
55-
-v --timeout 24h --tags acceptance \
56-
github.com/pivotal-cf/kiln/internal/acceptance/workflows
57-
58-
git reset --hard HEAD
59-
60-
- uses: actions/upload-artifact@v4
61-
with:
62-
path: ./kiln

0 commit comments

Comments
 (0)