File tree 5 files changed +18
-14
lines changed
5 files changed +18
-14
lines changed Original file line number Diff line number Diff line change @@ -93,19 +93,19 @@ jobs:
93
93
94
94
uses : actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6
95
95
with :
96
- key : ${{ runner.os }}-cockroach-binary-v2
96
+ key : ${{ runner.os }}-cockroach-binary-${{ hashFiles('tools/cockroachdb_checksums') }}
97
97
path : " cockroachdb"
98
- # - name: Configure GitHub cache for ClickHouse binaries
99
- # id: cache-clickhouse
98
+ - name : Configure GitHub cache for ClickHouse binaries
99
+ id : cache-clickhouse
100
100
101
- # uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6
102
- # with:
103
- # key: ${{ runner.os }}-clickhouse-binary
104
- # path: "clickhouse"
101
+ uses : actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6
102
+ with :
103
+ key : ${{ runner.os }}-clickhouse-binary-${{ hashFiles('tools/clickhouse_checksums') }}
104
+ path : " clickhouse"
105
105
- name : Build
106
106
run : cargo +${{ matrix.toolchain }} build --locked --all-targets --verbose
107
107
- name : Download ClickHouse
108
- # if: steps.cache-clickhouse.outputs.cache-hit != 'true'
108
+ if : steps.cache-clickhouse.outputs.cache-hit != 'true'
109
109
run : ./tools/ci_download_clickhouse
110
110
- name : Download CockroachDB binary
111
111
if : steps.cache-cockroachdb.outputs.cache-hit != 'true'
Original file line number Diff line number Diff line change @@ -10,13 +10,12 @@ set -o pipefail
10
10
set -o xtrace
11
11
set -o errexit
12
12
13
+ SOURCE_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " & > /dev/null && pwd ) "
13
14
ARG0=" $( basename ${BASH_SOURCE[0]} ) "
14
15
15
16
# If you change this, you must also update the md5sums below
16
17
CIDL_VERSION=" v21.7"
17
- CIDL_MD5_DARWIN=" a3f7edbc3505aa0eec181d704ed68dd2"
18
- CIDL_MD5_LINUX=" 6e2445e0484d98fe2ee22c3ea46022ff"
19
- CIDL_MD5_ILLUMOS=" ee6566514310f715abf0d13eecbafdf5"
18
+ source " $SOURCE_DIR /clickhouse_checksums"
20
19
CIDL_ASSEMBLE_DIR=" ./clickhouse"
21
20
22
21
# Download from manually-populated S3 bucket for now
Original file line number Diff line number Diff line change @@ -10,13 +10,12 @@ set -o pipefail
10
10
set -o xtrace
11
11
set -o errexit
12
12
13
+ SOURCE_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " & > /dev/null && pwd ) "
13
14
ARG0=" $( basename ${BASH_SOURCE[0]} ) "
14
15
15
16
# If you change this, you must also update the md5sums below
16
17
CIDL_VERSION=" v20.2.5"
17
- CIDL_MD5_DARWIN=" 4c4b84861c313884a4ef5fbbe57cb543"
18
- CIDL_MD5_LINUX=" 8fe4f47413e2c6570da0e661af716f9a"
19
- CIDL_MD5_ILLUMOS=" 2ee900af3bef860f627e4f8946dc6ba3"
18
+ source " $SOURCE_DIR /cockroachdb_checksums"
20
19
21
20
CIDL_ASSEMBLE_DIR=" ./cockroachdb"
22
21
Original file line number Diff line number Diff line change
1
+ CIDL_MD5_DARWIN="a3f7edbc3505aa0eec181d704ed68dd2"
2
+ CIDL_MD5_LINUX="6e2445e0484d98fe2ee22c3ea46022ff"
3
+ CIDL_MD5_ILLUMOS="ee6566514310f715abf0d13eecbafdf5"
Original file line number Diff line number Diff line change
1
+ CIDL_MD5_DARWIN="4c4b84861c313884a4ef5fbbe57cb543"
2
+ CIDL_MD5_LINUX="8fe4f47413e2c6570da0e661af716f9a"
3
+ CIDL_MD5_ILLUMOS="2ee900af3bef860f627e4f8946dc6ba3"
You can’t perform that action at this time.
0 commit comments