Skip to content

0.1.0

Choose a tag to compare

@github-actions github-actions released this 27 Mar 20:10
· 33 commits to main since this release
88da1d0

Version 0.1.0

Changelog

  • Initial version moved from helly25_mbo//testing/bashtest*

For Bazel MODULES.bazel

bazel_dep(name = "helly25_bashtest", version = "0.1.0")

For Bazel WORKSPACE

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
  name = "com_helly25_bashtest",
  url = "https://github.com/helly25/bashtest/releases/download/0.1.0/bashtest-0.1.0.tar.gz",
  sha256 = "3f0314c2dbc6f780c02543c6355d07f98cd9935e54a07ec4477e3301434517d6",
  strip_prefix = "bashtest-0.1.0",
)

Initializing the required modules

The project depends on some additional external repositories that can be added
manually of by calling the support functions in the user' WORKSPACE file:

load("@com_helly25_bashtest//bzl/workspace:load_modules.bzl", "helly25_bashtest_load_modules")

helly25_bashtest_load_modules()

load("@com_helly25_bashtest//bzl/workspace:init_modules.bzl", "helly25_bashtest_init_modules")

helly25_bashtest_init_modules()

What's Changed

  • Initial version moved from helly25_mbo/mbo/testing/bashtest.sh

Full Changelog: https://github.com/helly25/bashtest/commits/0.1.0