Skip to content

Commit

Permalink
Linux builder workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
battlmonstr committed Nov 22, 2023
1 parent 10afda9 commit 2e3eabd
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: 2.1

jobs:
release:
parameters:
resource_class:
type: string
machine:
image: ubuntu-2204:2023.04.2
resource_class: <<parameters.resource_class>>
steps:
- checkout
- run:
command: ./ci/release.sh

workflows:
version: 2
release_linux_builder:
when:
or:
- matches: { pattern: "^release\\/.+$", value: <<pipeline.git.branch>> }
jobs:
- release:
resource_class: arm.2xlarge

0 comments on commit 2e3eabd

Please sign in to comment.