No description
Find a file
2023-01-31 01:58:05 -08:00
.vscode (maint) cleanup of setup code 2021-11-22 12:12:15 +00:00
api [CI-6874]: Import TI instrumentation/client code from lite-engine (#9) 2023-01-31 01:58:05 -08:00
cli Remove lite-engine everywhere and rename to harness-docker-runner 2022-11-23 13:31:40 +00:00
config fix data race, add more trace logging 2022-11-25 12:08:03 +00:00
engine fix data race, add more trace logging 2022-11-25 12:08:03 +00:00
errors Add license to the repository (#50) 2022-03-25 14:26:37 +05:30
executor Remove lite-engine everywhere and rename to harness-docker-runner 2022-11-23 13:31:40 +00:00
handler [CI-6874]: Import TI instrumentation/client code from lite-engine (#9) 2023-01-31 01:58:05 -08:00
internal Add license to the repository (#50) 2022-03-25 14:26:37 +05:30
licenses Add license to the repository (#50) 2022-03-25 14:26:37 +05:30
livelog fix data race, add more trace logging 2022-11-25 12:08:03 +00:00
logger Add license to the repository (#50) 2022-03-25 14:26:37 +05:30
logstream Remove lite-engine everywhere and rename to harness-docker-runner 2022-11-23 13:31:40 +00:00
pipeline [CI-6874]: Import TI instrumentation/client code from lite-engine (#9) 2023-01-31 01:58:05 -08:00
server Small logging fixes 2022-11-30 12:58:37 -08:00
setup fixed error message not showing in UI and cleaned up code 2022-09-28 17:55:05 +02:00
ti [CI-6874]: Import TI instrumentation/client code from lite-engine (#9) 2023-01-31 01:58:05 -08:00
version Small log fixes 2022-11-29 14:55:28 -08:00
.drone.yml feat: Enable release build 2022-10-05 20:45:37 -07:00
.gitignore append usr/local/bin path for osx docker (#53) 2022-04-14 11:05:54 +01:00
.golangci.yml fixed go lint 2021-11-09 13:44:23 +05:30
go.mod [CI-6874]: Import TI instrumentation/client code from lite-engine (#9) 2023-01-31 01:58:05 -08:00
go.sum [CI-6874]: Import TI instrumentation/client code from lite-engine (#9) 2023-01-31 01:58:05 -08:00
LICENSE.md Add license to the repository (#50) 2022-03-25 14:26:37 +05:30
main.go Remove lite-engine everywhere and rename to harness-docker-runner 2022-11-23 13:31:40 +00:00
README.md (maint) release prep for v0.1.0 (#60) 2022-05-05 14:31:02 +01:00

Lite-engine

How to use:

  • Create an .env file. It can be empty.
  • To build linux and windows GOOS=windows go build -o lite-engine.exe; go build
  • Generate tls credentials: go run main.go certs
  • Start server: go run main.go server
  • Client call to check health status of server: go run main.go client.

Release procedure

Run the changelog generator.

docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u harness -p lite-engine -t <secret github token>

You can generate a token by logging into your GitHub account and going to Settings -> Personal access tokens.

Next we tag the PR's with the fixes or enhancements labels. If the PR does not fulfil the requirements, do not add a label.

Before moving on make sure to update the version file version/version.go.

Run the changelog generator again with the future version according to semver.

docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u harness -p lite-engine -t <secret token> --future-release v0.2.0

Create your pull request for the release. Get it merged then tag the release.