Skip to content

Commit

Permalink
workflows: rename EXPERIMENTAL workflow
Browse files Browse the repository at this point in the history
... and add `EXPERIMENTAL` prefix to individual jobs. We'll remove the
`EXPERIMENTAL` prefix when we make mandatory each individual job.

Epic: CRDB-8308
Release note: None
  • Loading branch information
rickystewart committed Mar 8, 2024
1 parent d2042ef commit bbd060f
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: EXPERIMENTAL GitHub actions testing
name: GitHub Actions Essential CI
on:
pull_request:
types: [ opened, reopened, synchronize, edited ]
Expand All @@ -7,7 +7,7 @@ concurrency:
group: ${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
acceptance:
EXPERIMENTAL_acceptance:
runs-on: [self-hosted, basic_big_runner_group]
steps:
- uses: actions/checkout@v4
Expand All @@ -28,7 +28,7 @@ jobs:
- name: clean up
run: ./build/github/cleanup-engflow-keys.sh
if: always()
check_generated_code:
EXPERIMENTAL_check_generated_code:
runs-on: [self-hosted, basic_runner_group]
steps:
- uses: actions/checkout@v4
Expand All @@ -40,7 +40,7 @@ jobs:
- name: clean up
run: ./build/github/cleanup-engflow-keys.sh
if: always()
docker_image_amd64:
EXPERIMENTAL_docker_image_amd64:
runs-on: [self-hosted, basic_runner_group]
steps:
- uses: actions/checkout@v4
Expand All @@ -56,7 +56,7 @@ jobs:
- name: clean up
run: ./build/github/cleanup-engflow-keys.sh
if: always()
examples_orms:
EXPERIMENTAL_examples_orms:
runs-on: [self-hosted, basic_runner_group_fips]
steps:
- uses: actions/checkout@v4
Expand All @@ -74,7 +74,7 @@ jobs:
- name: clean up
run: ./cockroach/build/github/cleanup-engflow-keys.sh
if: always()
lint:
EXPERIMENTAL_lint:
runs-on: [self-hosted, basic_big_runner_group]
steps:
- uses: actions/checkout@v4
Expand All @@ -91,7 +91,7 @@ jobs:
- name: clean up
run: ./build/github/cleanup-engflow-keys.sh
if: always()
local_roachtest:
EXPERIMENTAL_local_roachtest:
runs-on: [self-hosted, basic_runner_group]
steps:
- uses: actions/checkout@v4
Expand All @@ -109,7 +109,7 @@ jobs:
- name: clean up
run: ./build/github/cleanup-engflow-keys.sh
if: always()
local_roachtest_fips:
EXPERIMENTAL_local_roachtest_fips:
runs-on: [self-hosted, basic_runner_group_fips]
steps:
- uses: actions/checkout@v4
Expand All @@ -127,7 +127,7 @@ jobs:
- name: clean up
run: ./build/github/cleanup-engflow-keys.sh
if: always()
macos_amd64_build:
EXPERIMENTAL_macos_amd64_build:
runs-on: [self-hosted, basic_runner_group]
steps:
- uses: actions/checkout@v4
Expand All @@ -143,7 +143,7 @@ jobs:
- name: clean up
run: ./build/github/cleanup-engflow-keys.sh
if: always()
macos_arm64_build:
EXPERIMENTAL_macos_arm64_build:
runs-on: [self-hosted, basic_runner_group]
steps:
- uses: actions/checkout@v4
Expand All @@ -159,7 +159,7 @@ jobs:
- name: clean up
run: ./build/github/cleanup-engflow-keys.sh
if: always()
unit_tests:
EXPERIMENTAL_unit_tests:
runs-on: [self-hosted, basic_runner_group]
steps:
- uses: actions/checkout@v4
Expand All @@ -177,7 +177,7 @@ jobs:
- name: clean up
run: ./build/github/cleanup-engflow-keys.sh
if: always()
windows_build:
EXPERIMENTAL_windows_build:
runs-on: [self-hosted, basic_runner_group]
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit bbd060f

Please sign in to comment.