Skip to content

Commit

Permalink
Update codeql-scanning.yaml (#1267)
Browse files Browse the repository at this point in the history
  • Loading branch information
anupsv authored Feb 12, 2025
1 parent d646501 commit 1d3a6c5
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/codeql-scanning.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
- 'common/**'
- 'api/**'
- '.github/codeql/**'
- '.github/workflows/codeql-analysis.yml'
- '.github/workflows/codeql-scanning.yaml'
schedule:
- cron: '0 9 * * *'

Expand Down Expand Up @@ -46,10 +46,19 @@ jobs:
with:
go-version: '1.21.13'

- name: Custom build using make
- name: Build contract dependencies
run: |
go install github.com/ethereum/go-ethereum/cmd/abigen@latest
make compile-contracts
cd contracts && yarn
- name: Compile contracts
run: |
cd contracts && forge build
# Ref: https://github.com/Layr-Labs/eigenda/blob/master/.github/workflows/integration-tests.yml#L71C7-L71C67
# - name: Custom build using make
# run: |
# go install github.com/ethereum/go-ethereum/cmd/abigen@latest
# make compile-contracts

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down

0 comments on commit 1d3a6c5

Please sign in to comment.