Skip to content

Commit 27c9275

Browse files
0.14.0 fixes (#817)
Co-authored-by: apoorvsadana <[email protected]>
1 parent c9da9e9 commit 27c9275

File tree

12 files changed

+215
-195
lines changed

12 files changed

+215
-195
lines changed

.github/workflows/pull-request-merge.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,16 @@ jobs:
4444

4545
# Deprecating bootstrapper V1
4646
build-nightly-and-publish-bootstrapper:
47-
uses: ./.github/workflows/task-do-nothing-build-nightly-and-publish.yml
47+
uses: ./.github/workflows/task-build-nightly-and-publish.yml
48+
with:
49+
image-name: bootstrapper
50+
image-file: ./bootstrapper/Dockerfile
51+
permissions:
52+
contents: read
53+
packages: write
54+
attestations: write
55+
id-token: write
56+
secrets: inherit
4857

4958
# ========================================================================= #
5059
# MERGE QUEUE #

.github/workflows/task-build-binary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
uses: ./.github/actions/setup-rust
4343
with:
4444
rust-version: ${{ env.BUILD_RUST_VERSION }}
45-
cache-key: ${{ inputs.binary-name }}-${{ runner.os }}-rust-1.86${{ inputs.cache-key-suffix }}
45+
cache-key: ${{ inputs.binary-name }}-${{ runner.os }}-rust-1.89${{ inputs.cache-key-suffix }}
4646

4747
- name: Python Cairo setup (for apollo_starknet_os_program dependencies)
4848
if: inputs.is-standalone == false

.github/workflows/task-build-nightly-and-publish.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,13 @@ jobs:
5252
uses: ./.github/actions/setup-rust
5353
with:
5454
rust-version: ${{ env.BUILD_RUST_VERSION }}
55-
cache-key: madara-${{ runner.os }}-rust-1.86
55+
cache-key: madara-${{ runner.os }}-rust-1.89
56+
57+
- name: Python Cairo setup (for apollo_starknet_os_program dependencies)
58+
if: inputs.is-standalone == false
59+
uses: ./.github/actions/setup-python-cairo
60+
with:
61+
python-version: ${{ env.BUILD_PYTHON_VERSION }}
5662

5763
- name: Run make artifacts
5864
run: yes | make artifacts

.github/workflows/task-build-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
uses: ./.github/actions/setup-rust
5252
with:
5353
rust-version: ${{ env.BUILD_RUST_VERSION }}
54-
cache-key: madara-${{ runner.os }}-rust-1.86
54+
cache-key: madara-${{ runner.os }}-rust-1.89
5555

5656
- name: Build artifacts
5757
run: yes | make artifacts

0 commit comments

Comments
 (0)