We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1dfae6 commit 230febaCopy full SHA for 230feba
1 file changed
.github/workflows/release.yml
@@ -28,10 +28,12 @@ jobs:
28
sudo docker system prune -af
29
df -h
30
31
- - name: Install protobuf compiler
+ - name: Patch SP1 Docker image with protobuf includes
32
run: |
33
- sudo apt-get update
34
- sudo apt-get install -y protobuf-compiler
+ docker pull ghcr.io/succinctlabs/sp1:v6.0.2
+ echo 'FROM ghcr.io/succinctlabs/sp1:v6.0.2
35
+ RUN apt-get update && apt-get install -y --no-install-recommends libprotobuf-dev && rm -rf /var/lib/apt/lists/*' \
36
+ | docker build -t ghcr.io/succinctlabs/sp1:v6.0.2 -
37
38
- name: Build RISC-V ELFs
39
0 commit comments