Skip to content

Commit f314977

Browse files
authored
Merge branch 'main' into newhint19-double_slope_external_consts
2 parents 11eb843 + 45a43aa commit f314977

File tree

23 files changed

+1277
-170
lines changed

23 files changed

+1277
-170
lines changed

.github/workflows/canary.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: QA Canary Workflow
2+
3+
on:
4+
workflow_run:
5+
workflows: [QA]
6+
types:
7+
- completed
8+
9+
jobs:
10+
on-qa-success:
11+
runs-on: ubuntu-latest
12+
if: ${{ github.event.workflow_run.conclusion == 'success' }}
13+
steps:
14+
- run: exit 0
15+
on-qa-failure:
16+
runs-on: ubuntu-latest
17+
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
18+
steps:
19+
- run: exit 1

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: touch target/doc/.nojekyll
2222
- name: Set short sha output
2323
id: short_sha
24-
run: echo "::set-output name=sha::$(git rev-parse --short HEAD)"
24+
run: echo ":name=sha::$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
2525
- name: Checkout gh-pages
2626
uses: actions/checkout@v3
2727
with:

.github/workflows/hyperfine.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: actions/cache@v3
3232
id: cache
3333
with:
34-
path: ${{ matrix.branch }}_programs/*.json
34+
path: ${{ matrix.branch }}_programs/*.json
3535
key: benchmarks-${{ matrix.branch }}-${{ hashFiles( 'cairo_programs/benchmarks/*.cairo' ) }}
3636
restore-keys: benchmarks-${{ matrix.branch }}-
3737

0 commit comments

Comments
 (0)