Skip to content

Commit 2e8ee93

Browse files
committed
build CL node
1 parent 02b5e91 commit 2e8ee93

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build CL image with plugins
2+
on:
3+
push:
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu22.04-16cores-64GB
8+
permissions:
9+
id-token: write
10+
contents: read
11+
steps:
12+
- name: Checkout Chainlink repository
13+
uses: actions/checkout@v3
14+
with:
15+
repository: smartcontractkit/chainlink
16+
path: chainlink-repo
17+
- name: Set up Docker Buildx
18+
uses: docker/setup-buildx-action@v2
19+
- name: Build and Load Docker Image
20+
uses: docker/build-push-action@v4
21+
with:
22+
cache-from: type=gha,scope=ctf
23+
cache-to: type=gha,scope=ctf,mode=max
24+
context: /home/runner/work/chainlink-ccv/chainlink-ccv/chainlink-repo
25+
file: /home/runner/work/chainlink-ccv/chainlink-ccv/chainlink-repo/plugins/chainlink.Dockerfile
26+
load: true
27+
tags: local

0 commit comments

Comments
 (0)