Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • ci/component/bazelisk
1 result
Show changes
Commits on Source (5)
# [1.1.0](https://git.gitlab.arm.com/ci/component/bazelisk/compare/v1.0.1...v1.1.0) (2024-12-19)
### Bug Fixes
- **ruleset:** use `before_script` from `.job` ([1d5cf0f](https://git.gitlab.arm.com/ci/component/bazelisk/commit/1d5cf0f6277f4ecaa36fad8aee984ab6a5218842))
### Features
- **ruleset:** allow specifying jobs to extend ([29e2a54](https://git.gitlab.arm.com/ci/component/bazelisk/commit/29e2a5461be60e3dbfacc3ae07b27f65e8a6d915))
## [1.0.1](https://git.gitlab.arm.com/ci/component/bazelisk/compare/v1.0.0...v1.0.1) (2024-12-10)
### Bug Fixes
......
* @matthew.clarkson
* @matthew.clarkson @alex.tercete
[CI components] @matthew.clarkson
[CI components] @matthew.clarkson @alex.tercete
/templates/
[Documentation] @matthew.clarkson
[Documentation] @matthew.clarkson @alex.tercete
*.md
[Licensing] @matthew.clarkson
[Licensing] @matthew.clarkson @alex.tercete
/.reuse/dep5
/LICENSES/*
[Configuration] @matthew.clarkson
[Configuration] @matthew.clarkson @alex.tercete
.editorconfig
[CI] @matthew.clarkson
[CI] @matthew.clarkson @alex.tercete
.gitlab-ci.yml
[Templates] @matthew.clarkson
[Templates] @matthew.clarkson @alex.tercete
/templates/*
[Release] @matthew.clarkson
[Release] @matthew.clarkson @alex.tercete
/.releaserc.yaml
[Node] @matthew.clarkson
[Node] @matthew.clarkson @alex.tercete
/package.json
/.npmrc
[Branding] @matthew.clarkson
[Branding] @matthew.clarkson @alex.tercete
/icon.svg
[Bazel] @matthew.clarkson
[Bazel] @matthew.clarkson @alex.tercete
/.bazelrc
/.bazelrc.ci
/.bazelignore
......
module(
name = "bazelisk",
version = "1.0.1",
version = "1.1.0",
bazel_compatibility = [
">=7.0.0",
],
......
......@@ -4,7 +4,7 @@ spec:
default: registry.gitlab.arm.com/ci/component/bazelisk
description: "Open container image (OCI) to use."
tag:
default: 1.0.1
default: 1.1.0
description: "Open container image (OCI) tag for the image."
stage:
default: test
......
......@@ -4,7 +4,7 @@ spec:
default: registry.gitlab.arm.com/ci/component/bazelisk
description: "Open container image (OCI) to use."
tag:
default: 1.0.1
default: 1.1.0
description: "Open container image (OCI) tag for the image."
config:
default: local
......
......@@ -4,8 +4,13 @@ spec:
default: registry.gitlab.arm.com/ci/component/bazelisk
description: "Open container image (OCI) to use."
tag:
default: 1.0.1
default: 1.1.0
description: "Open container image (OCI) tag for the image."
extends:
type: array
default:
- .job
description: "Jobs for the testing jobs to extend."
needs:
type: array
default: []
......@@ -30,7 +35,7 @@ include:
tag: "$[[inputs.tag]]"
config:
extends: .job
extends: $[[inputs.extends]]
needs: $[[inputs.needs]]
parallel:
matrix:
......
......@@ -4,8 +4,13 @@ spec:
default: registry.gitlab.arm.com/ci/component/bazelisk
description: "Open container image (OCI) to use."
tag:
default: 1.0.1
default: 1.1.0
description: "Open container image (OCI) tag for the image."
extends:
type: array
default:
- .job
description: "Jobs for the testing jobs to extend."
needs:
type: array
default: []
......@@ -30,7 +35,7 @@ include:
tag: "$[[inputs.tag]]"
os:
extends: .job
extends: $[[inputs.extends]]
needs: $[[inputs.needs]]
variables:
CI_LOCKFILE_MODE: "off"
......
......@@ -4,7 +4,7 @@ spec:
default: registry.gitlab.arm.com/ci/component/bazelisk
description: "Open container image (OCI) to use."
tag:
default: 1.0.1
default: 1.1.0
description: "Open container image (OCI) tag for the image."
needs:
type: array
......@@ -35,10 +35,10 @@ semantic-release:
- .cache/npm
- !reference [.job, cache]
before_script:
- !reference [.job, before_script]
- npm config --location project set cache "${CI_PROJECT_DIR}/.cache/npm"
- npm ci --prefer-offline
script:
- !reference [.bazelisk-fragment, rc]
- npx semantic-release
rules:
- if: $CI_COMMIT_TAG
......
......@@ -4,12 +4,17 @@ spec:
default: registry.gitlab.arm.com/ci/component/bazelisk
description: "Open container image (OCI) to use."
tag:
default: 1.0.1
default: 1.1.0
description: "Open container image (OCI) tag for the image."
minimum:
default: 7.4.0
description: "The minimum Bazel version tested."
regex: ^\d+\.\d+\.\d+$
extends:
type: array
default:
- .job
description: "Jobs for the testing jobs to extend."
needs:
type: array
default: []
......@@ -45,6 +50,7 @@ include:
inputs:
image: "$[[inputs.image]]"
tag: "$[[inputs.tag]]"
extends: $[[inputs.extends]]
needs: $[[inputs.needs]]
roots: $[[inputs.roots]]
versions: $[[inputs.versions]]
......@@ -52,6 +58,7 @@ include:
inputs:
image: "$[[inputs.image]]"
tag: "$[[inputs.tag]]"
extends: $[[inputs.extends]]
needs: $[[inputs.needs]]
roots: $[[inputs.roots]]
configs: $[[inputs.configs]]
......@@ -59,6 +66,7 @@ include:
inputs:
image: "$[[inputs.image]]"
tag: "$[[inputs.tag]]"
extends: $[[inputs.extends]]
needs: $[[inputs.needs]]
roots: $[[inputs.roots]]
oses: $[[inputs.oses]]
......
......@@ -4,8 +4,13 @@ spec:
default: registry.gitlab.arm.com/ci/component/bazelisk
description: "Open container image (OCI) to use."
tag:
default: 1.0.1
default: 1.1.0
description: "Open container image (OCI) tag for the image."
extends:
type: array
default:
- .job
description: "Jobs for the testing jobs to extend."
needs:
type: array
default: []
......@@ -31,7 +36,7 @@ include:
tag: "$[[inputs.tag]]"
version:
extends: .job
extends: $[[inputs.extends]]
needs: $[[inputs.needs]]
variables:
CI_LOCKFILE_MODE: "off"
......