Skip to content

Commit 60f6bcd

Browse files
committed
fix: CI workflows.
These correctly link against develop for v12 tip-of-tree, instead. This also includes some renaming in/of the workflows for clarity.
1 parent 97175c9 commit 60f6bcd

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
build_tip_of_tree_v12:
16-
name: Build test (against tip-of-tree core v12)
16+
name: Build test (against tip-of-tree core develop)
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout experimentation plugin
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@v4
2626
with:
2727
repository: 'google/blockly'
28-
ref: 'rc/v12.0.0'
28+
ref: 'develop'
2929
path: core-blockly
3030

3131
- name: Use Node.js 20.x
@@ -42,7 +42,7 @@ jobs:
4242
npm install
4343
cd ..
4444
45-
- name: Link latest Blockly v12
45+
- name: Link latest Blockly develop
4646
run: |
4747
cd core-blockly
4848
npm run package
@@ -58,7 +58,7 @@ jobs:
5858
npm run build
5959
6060
build:
61-
name: Build test (against pinned v12)
61+
name: Build test (against pinned v12.0.0)
6262
# Don't run pinned version checks for PRs.
6363
if: ${{ !github.base_ref }}
6464
runs-on: ubuntu-latest

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414

1515
jobs:
1616
webdriverio_tests_tip_of_tree_v12:
17-
name: WebdriverIO tests (against tip-of-tree core v12)
17+
name: WebdriverIO tests (against tip-of-tree core develop)
1818
timeout-minutes: 10
1919
runs-on: ${{ matrix.os }}
2020

@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/checkout@v4
3434
with:
3535
repository: 'google/blockly'
36-
ref: 'rc/v12.0.0'
36+
ref: 'develop'
3737
path: core-blockly
3838

3939
- name: Use Node.js 20.x
@@ -50,7 +50,7 @@ jobs:
5050
npm install
5151
cd ..
5252
53-
- name: Link latest Blockly v12
53+
- name: Link latest Blockly develop
5454
run: |
5555
cd core-blockly
5656
npm run package
@@ -66,7 +66,7 @@ jobs:
6666
npm run test
6767
6868
webdriverio_tests:
69-
name: WebdriverIO tests (against pinned v12)
69+
name: WebdriverIO tests (against pinned v12.0.0)
7070
# Don't run pinned version checks for PRs.
7171
if: ${{ !github.base_ref }}
7272
timeout-minutes: 10

0 commit comments

Comments
 (0)