Skip to content
  1. Jan 03, 2024
    • Matthew Clarkson's avatar
      fix: commit to new component directory structure · c5ced293
      Matthew Clarkson authored
      This makes the component include path consistent on 16.3/16.5+.
      
      They changed the template structure from:
      
      ```
      ├── template.yml
      ├── README.md
      ├── .gitlab-ci.yml
      ├── unit/
      │   └── template.yml
      └── integration/
          └── template.yml
      ```
      
      To:
      
      ```
      ├── README.md
      ├── .gitlab-ci.yml
      └── templates/
          └── all-scans.yml
          └── secret-detection.yml
      ```
      
      Unfortunately, symlinks are *not* supported so until we can drop support
      for 16.3, we'll have to copy over changes.
      
      BREAKING CHANGE: The component must be included via the `bazelisk` name.
      
      The nameless include in `1.0.0-beta.1` is no longer supported.
      
      ```
      include:
        - component: "${CI_SERVER_HOST}/ci/component/bazelisk@1.0.0-beta.1"
      ```
      
      Add the `/bazelisk` named CI component:
      
      ```
      include:
        - component: "${CI_SERVER_HOST}/ci/component/bazelisk/bazelisk@1.0.0-beta.2"
      ```
      
      This is due to GitLab CI components being stabilised and the nameless component
      support being removed.
      c5ced293
    • Matthew Clarkson's avatar
      fix: add stage to `.bazelisk` job · 8282d712
      Matthew Clarkson authored
      8282d712
    • Lukasz Okraszewski's avatar
      chore: update dir structure · f7891c51
      Lukasz Okraszewski authored and Matthew Clarkson's avatar Matthew Clarkson committed
      As of gitlab 16.5 the component dir
      structure has changed. Updates the name of
      component to match the updated docs.
      f7891c51
    • Matthew Clarkson's avatar
      chore: upgrade `rules_oci@1.5.1` · f89a4edd
      Matthew Clarkson authored
      f89a4edd
    • Matthew Clarkson's avatar
      chore: upgrade `aspect-bazel-lib@2.1.0` · 62a700b1
      Matthew Clarkson authored
      Move off the beta version.
      62a700b1
    • Lukasz Okraszewski's avatar
      fix: pin bazel version · f992954e
      Lukasz Okraszewski authored
      Pin to 7.0.0rc3 due to upstream regression
      in 7.0.0rc4 onwards.
      f992954e
  2. Dec 20, 2023
  3. Dec 19, 2023
  4. Dec 11, 2023
  5. Nov 15, 2023
  6. Nov 13, 2023
    • Matthew Clarkson's avatar
      refactor: switch to `.bazelisk-fragment` · 7afa43ba
      Matthew Clarkson authored
      `.bazelisk-script` implies everything must be a script reference.
      
      We may want to include other references in the future.
      
      Fragment is better nomenclature here.
      
      BREAKING CHANGE: `.bazelisk-script` is now `.bazelisk-fragment`
      
      Update any `!reference[.bazelisk-script, ...]` to `!reference[.bazelisk-fragment, ...]`
      7afa43ba
  7. Nov 03, 2023
Loading