Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
eternauta1337 committed Feb 28, 2024
1 parent b98a470 commit 677dd79
Showing 1 changed file with 34 additions and 36 deletions.
70 changes: 34 additions & 36 deletions .github/workflows/ci1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ env:
jobs:
setup:
runs-on: ubuntu-latest
outputs:
cache-key: ${{ steps.cache-dependencies.outputs.cache-key }}
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
Expand All @@ -27,10 +25,10 @@ jobs:
id: cache-dependencies
uses: actions/cache@v2
with:
path: |
**/node_modules
!**/node_modules/.cache
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
path: '~/.npm'
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
common:
needs: setup
Expand All @@ -48,39 +46,39 @@ jobs:
# Repeat the pattern for other jobs, like ethernaut-toolbox, ethernaut-ui, etc.
# Make sure to remove redundant npm ci steps and add 'needs: setup' to ensure they run after the setup job

install-foundry:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
id: foundry-install
- name: Cache Foundry
uses: actions/cache@v2
with:
path: |
~/.foundry
~/.cargo/bin/foundry
key: ${{ runner.os }}-foundry-${{ github.sha }}
# install-foundry:
# needs: setup
# runs-on: ubuntu-latest
# steps:
# - name: Install Foundry
# uses: foundry-rs/foundry-toolchain@v1
# id: foundry-install
# - name: Cache Foundry
# uses: actions/cache@v2
# with:
# path: |
# ~/.foundry
# ~/.cargo/bin/foundry
# key: ${{ runner.os }}-foundry-${{ github.sha }}

# For jobs that require Foundry, make them depend on 'install-foundry' and adjust steps accordingly.
# Example for a job requiring Foundry:

ethernaut-interact:
needs: [setup, install-foundry]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js with cache
uses: actions/setup-node@v2
with:
node-version: '20.x'
- run: npm run build --if-present
- run: npm run compile --if-present
- name: Start local chain
run: |
npm run chain &
sleep 5
- run: cd packages/ethernaut-interact && npm t
# ethernaut-interact:
# needs: [setup, install-foundry]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Setup Node.js with cache
# uses: actions/setup-node@v2
# with:
# node-version: '20.x'
# - run: npm run build --if-present
# - run: npm run compile --if-present
# - name: Start local chain
# run: |
# npm run chain &
# sleep 5
# - run: cd packages/ethernaut-interact && npm t

# Adjust other jobs similarly, ensuring they 'need' either setup or both setup and install-foundry as appropriate.

0 comments on commit 677dd79

Please sign in to comment.