3

Announcing the open beta for Linux shell runners in Bitbucket Pipelines

 1 year ago
source link: https://bitbucket.org/blog/announcing-the-open-beta-for-linux-shell-runners-in-bitbucket-pipelines
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Announcing the open beta for Linux shell runners in Bitbucket Pipelines

August 15, 2022 2 min read

Share

We are happy to announce that Bitbucket Pipelines now supports non-containerized Linux shell self-hosted runners. This is currently in beta.

You can now create a self-hosted runner and run it on your Linux infrastructure without container restrictions. Since it is your infrastructure, you will not be charged for the build minutes used by your self-hosted runner.

This self-hosted runner is non-containerized allowing your CI/CD step to access the host's hardware, such as graphics card or any connected external devices. Given that the runner will run directly on a Linux instance, there would be no restrictions on a step's memory usage.

Get Started

To get started, go to your repository or workspace settings, and click on the Runners tab in the left navigation menu. Select Linux Shell from the System and Architecture dropdown and specify a runner name and labels.

Just like Linux Docker, Windows and MacOS runners, if you choose to create a workspace runner, that runner can be used to run builds for any repository in that workspace.

Linux Shell Runner installation wizard
Linux Shell Runner installation wizard

Configuring your bitbucket-pipelines.yaml

To use your Linux Shell runner in Pipelines, in your bitbucket-pipelines.yaml file, add to the step a runs-on section with at least a linux.shell label, and it will run on the next available Linux Shell Runner that has all the required label(s). If all matching Linux Shell Runners are busy, your step will be queued until one becomes available again.

  pipelines:
  default:
    - parallel:
        - step:
            name: Build and Test
            runs-on:
              - linux.shell
            script:
              - npm run build
              - npm run test
        - step:
            name: Code linting
            runs-on:
              - linux.shell
            script:
              - npm run lint 

To learn more about how to set up and use your own runners, check out this demo den on how to use Bitbucket Pipelines Runners and execute your Bitbucket pipelines builds on your own infrastructure, so you have more control over your server configurations. To learn more, refer to the technical documentation.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK