Skip to content

Commit c730bc7

Browse files
committed
fixed github checkout
1 parent ab0ba19 commit c730bc7

3 files changed

Lines changed: 21 additions & 2 deletions

File tree

.github/workflows/build-linux.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,16 @@ jobs:
6565
debug-level: ${{ fromJSON(inputs.debug-levels) }}
6666

6767
steps:
68-
- name: 'Checkout the JDK source'
68+
- name: 'Checkout the JDK17 source'
6969
uses: actions/checkout@v3
7070

71+
- name: 'Checkout the JDK8 source'
72+
uses: actions/checkout@v3
73+
with:
74+
fetch-depth: 1
75+
ref: dev/v2/jdk8u
76+
path: cvm/jdk8u
77+
7178
- name: 'Determine version'
7279
id: version
7380
run: echo "::set-output name=version::$(cat ./cvm/conf/version)"

.github/workflows/gtest-linux.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ jobs:
6868
- name: 'Checkout the JDK source'
6969
uses: actions/checkout@v3
7070

71+
- name: 'Checkout the JDK8 source'
72+
uses: actions/checkout@v3
73+
with:
74+
ref: dev/v2/jdk8u
75+
path: cvm/jdk8u
76+
7177
- name: 'Determine version'
7278
id: version
7379
run: echo "::set-output name=version::$(cat ./cvm/conf/version)"

.github/workflows/test-cvm8+17.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,15 @@ jobs:
7171
test-suite: 'hotspot8'
7272

7373
steps:
74-
- name: 'Checkout the JDK source'
74+
- name: 'Checkout the JDK17 source'
7575
uses: actions/checkout@v3
7676

77+
- name: 'Checkout the JDK8 source'
78+
uses: actions/checkout@v3
79+
with:
80+
ref: dev/v2/jdk8u
81+
path: cvm/jdk8u
82+
7783
- name: 'Determine version'
7884
id: version
7985
run: echo "::set-output name=version::$(cat ./cvm/conf/version)"

0 commit comments

Comments
 (0)