Skip to content

Commit

Permalink
no way
Browse files Browse the repository at this point in the history
  • Loading branch information
augustbleeds committed Sep 27, 2024
1 parent 420608a commit 3b016b7
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 16 deletions.
6 changes: 4 additions & 2 deletions .github/actions/build-test-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ inputs:
runs:
using: composite
steps:
- name: Install Cairo
uses: ./.github/actions/install-cairo
- name: Install asdf
uses: asdf-vm/actions/install@v3

Check failure on line 26 in .github/actions/build-test-image/action.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. v3 is not a valid SHA reference (sha-ref / error) 2. No version comment found (version-comment / warning)
# - name: Install Cairo
# uses: ./.github/actions/install-cairo
- name: Check if image exists
id: check-image
uses: smartcontractkit/chainlink-github-actions/docker/image-exists@fc3e0df622521019f50d772726d6bf8dc919dd38 # v2.3.19
Expand Down
14 changes: 10 additions & 4 deletions .github/workflows/contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ jobs:
with:
nix_path: nixpkgs=channel:nixos-unstable

- name: Install Cairo
uses: ./.github/actions/install-cairo
- name: Install asdf
uses: asdf-vm/actions/install@v3

Check failure on line 24 in .github/workflows/contracts.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. v3 is not a valid SHA reference (sha-ref / error) 2. No version comment found (version-comment / warning)

# - name: Install Cairo
# uses: ./.github/actions/install-cairo

- name: Test
run: nix develop -c make test-ts-contracts
Expand All @@ -38,8 +41,11 @@ jobs:
with:
nix_path: nixpkgs=channel:nixos-unstable

- name: Install Cairo
uses: ./.github/actions/install-cairo
- name: Install asdf
uses: asdf-vm/actions/install@v3

Check failure on line 45 in .github/workflows/contracts.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. v3 is not a valid SHA reference (sha-ref / error) 2. No version comment found (version-comment / warning)

# - name: Install Cairo
# uses: ./.github/actions/install-cairo

- name: Install Starknet Foundry
uses: ./.github/actions/install-starknet-foundry
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ jobs:
with:
nix_path: nixpkgs=channel:nixos-unstable

- name: Install Cairo
uses: ./.github/actions/install-cairo
- name: Install asdf
uses: asdf-vm/actions/install@v3

Check failure on line 24 in .github/workflows/examples.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. v3 is not a valid SHA reference (sha-ref / error) 2. No version comment found (version-comment / warning)

# - name: Install Cairo
# uses: ./.github/actions/install-cairo

- name: Install Starknet Foundry
uses: ./.github/actions/install-starknet-foundry
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/integration-tests-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,10 @@ jobs:
uses: cachix/install-nix-action@3715ab1a11cac9e991980d7b4a28d80c7ebdd8f9 # nix:v2.24.6
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Install Cairo
uses: ./.github/actions/install-cairo
# - name: Install Cairo
# uses: ./.github/actions/install-cairo
- name: Install asdf
uses: asdf-vm/actions/install@v3

Check failure on line 166 in .github/workflows/integration-tests-smoke.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. v3 is not a valid SHA reference (sha-ref / error) 2. No version comment found (version-comment / warning)
- name: Build contracts
run: |
cd contracts && scarb --profile release build
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/integration-tests-soak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,10 @@ jobs:
uses: cachix/install-nix-action@3715ab1a11cac9e991980d7b4a28d80c7ebdd8f9 # nix:v2.24.6
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Install Cairo
uses: ./.github/actions/install-cairo
- name: Install asdf
uses: asdf-vm/actions/install@v3
# - name: Install Cairo
# uses: ./.github/actions/install-cairo
- name: Build contracts
run: |
cd contracts && scarb --profile release build
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/integration_gauntlet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,11 @@ jobs:
with:
nix_path: nixpkgs=channel:nixos-unstable

- name: Install Cairo
uses: ./.github/actions/install-cairo
# - name: Install Cairo
# uses: ./.github/actions/install-cairo

- name: Install asdf
uses: asdf-vm/actions/install@v3

- name: Test
run: nix develop -c make test-integration-gauntlet
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ jobs:
with:
nix_path: nixpkgs=channel:nixos-unstable

- name: Install Cairo
uses: ./.github/actions/install-cairo
# - name: Install Cairo
# uses: ./.github/actions/install-cairo

- name: Install asdf
uses: asdf-vm/actions/install@v3

- name: Install
run: nix develop -c yarn install --frozen-lockfile
Expand Down

0 comments on commit 3b016b7

Please sign in to comment.