Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
555c9e5
Update run.sh
jebjohns Aug 26, 2023
6d4d126
Update README.md
Connect2naga Aug 26, 2023
ef3011b
removed deply workflow
jebjohns Aug 26, 2023
0a5aa4c
Merge branch 'main' of github.com:intelops/tracetest into main
jebjohns Aug 26, 2023
1cc7150
Updated workflow
jebjohns Aug 27, 2023
62b7ae6
Create cli_release.yaml
jebinjeb Aug 28, 2023
22695c9
Update cli_release.yaml
jebinjeb Aug 29, 2023
1e94aca
Merge pull request #2 from jebinjeb/patch-1
jebjohns Aug 29, 2023
c89bb4a
Update cli_release.yaml
shalukanna Sep 4, 2023
734467c
Merge pull request #3 from shalukanna/patch-1
jebjohns Sep 4, 2023
a00fbd0
Update cli_release.yaml
shalukanna Sep 4, 2023
e112c07
Merge pull request #4 from shalukanna/patch-2
jebjohns Sep 4, 2023
578b2ce
Update cli_release.yaml
shalukanna Sep 4, 2023
03b7164
Merge pull request #5 from shalukanna/patch-3
jebjohns Sep 4, 2023
9fe6895
feat: Add Helm Release YAML workflow and Tracetest Helm chart
akash4sh Sep 19, 2023
e660a49
updated image
akash4sh Sep 22, 2023
fda21a4
Merge pull request #6 from akash4sh/main
jebjohns Oct 5, 2023
b524500
Updated the action to publish image with latest tag
akash4sh Oct 6, 2023
5342eae
Merge pull request #7 from akash4sh/main
jebjohns Oct 6, 2023
168fec0
Update Dockerfile
akash4sh Oct 12, 2023
ba5cc49
updated Dockerfile
akash4sh Oct 14, 2023
96308b5
added tractest-server
akash4sh Oct 14, 2023
22ca4aa
Added QT changes
Shifna12Zarnaz Oct 14, 2023
83ba755
updated dockerfile
akash4sh Oct 16, 2023
371f0b0
updated dockerfile and makefile
akash4sh Oct 17, 2023
718d365
updated Dockerfile
akash4sh Oct 17, 2023
92174ae
updated tracetest-container-pr.yml
akash4sh Oct 17, 2023
4a655a7
updated tracetest-container-pr.yml
akash4sh Oct 17, 2023
c4474a6
updated tracetest-container-pr.yml
akash4sh Oct 17, 2023
e4e2c51
updated tracetest-container-pr.yml
akash4sh Oct 17, 2023
cb9b30c
updated makefile
akash4sh Oct 17, 2023
92263e4
Update Dockerfile
akash4sh Oct 17, 2023
8280c8a
updated tracetest-container.yaml
akash4sh Oct 18, 2023
79c39a1
Merge branch 'test-docker' of https://github.com/intelops/tracetest i…
akash4sh Oct 18, 2023
993c947
Added Logs to debug
Shifna12Zarnaz Oct 18, 2023
0793a41
Added Logs to debug
Shifna12Zarnaz Oct 18, 2023
f0ca77f
adding logs for tenant
connect2karu Oct 18, 2023
9512db6
adding logs for tenant
connect2karu Oct 18, 2023
b41980c
adding logs for tenant
connect2karu Oct 18, 2023
667c44a
adding logs for tenant
connect2karu Oct 18, 2023
6fc8efe
adding logs for tenant
connect2karu Oct 18, 2023
cb272bc
adding logs for tenant
connect2karu Oct 18, 2023
4e4d7b5
adding logs for tenant
connect2karu Oct 18, 2023
9b65b8e
Merge pull request #11 from intelops/qt
jebjohns Oct 19, 2023
45e409c
Merge pull request #13 from intelops/test-docker
jebjohns Oct 19, 2023
35e5f1e
updated go version
akash4sh Oct 31, 2023
993805b
Merge pull request #14 from akash4sh/main
jebjohns Oct 31, 2023
326afa5
fix cli build issue
akash4sh Oct 31, 2023
6748d9c
Merge pull request #15 from akash4sh/main
jebjohns Oct 31, 2023
fbfb2e1
readme
Meerarj Oct 31, 2023
631ef7b
readme chamges
Meerarj Oct 31, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions .github/workflows/cli_release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Build and publish tracetest CLI

on:
push:
branches:
- main
tags:
- 'v*.*.*' # Only build on tags that match the 'vX.Y.Z' pattern

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Go environment
uses: actions/setup-go@v4
with:
go-version: '1.20'

- name: Build my CLI for Linux
run: go mod download && CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o tracetest-linux cli/main.go

- name: Build my CLI for macOS
run: go mod download && GOOS=darwin GOARCH=amd64 go build -o tracetest-macos cli/main.go

- name: Build my CLI for Windows
run: go mod download && GOOS=windows GOARCH=amd64 go build -o tracetest-windows.exe cli/main.go

- name: Get release name from tag
id: release
run: echo "::set-output name=name::$(echo ${GITHUB_REF#refs/tags/})"
env:
GITHUB_REF: ${{ github.ref }}

- name: Create release for Linux
uses: softprops/action-gh-release@v1
with:
files: cli/tracetest-linux
tag_name: ${{ github.ref }}
name: ${{ steps.release.outputs.name }} - Linux
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Create release for macOS
uses: softprops/action-gh-release@v1
with:
files: cli/tracetest-macos
tag_name: ${{ github.ref }}
name: ${{ steps.release.outputs.name }} - macOS
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Create release for Windows
uses: softprops/action-gh-release@v1
with:
files: cli/tracetest-windows.exe
tag_name: ${{ github.ref }}
name: ${{ steps.release.outputs.name }} - Windows
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49 changes: 0 additions & 49 deletions .github/workflows/community-issue-notification.yaml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/community-label-user-requests.yaml

This file was deleted.

121 changes: 0 additions & 121 deletions .github/workflows/deploy-demo.yml

This file was deleted.

Loading