Merge pull request #3792 from jimmygchen/eip4844

Fix local testnet for MacOS
This commit is contained in:
realbigsean 2022-12-12 17:47:06 -05:00 committed by GitHub
commit e8322c8a04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,6 +27,13 @@ jobs:
- name: Install ganache
run: npm install ganache@latest --global
- name: Install GNU sed & GNU grep
run: |
brew install gnu-sed grep
echo "$(brew --prefix)/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
echo "$(brew --prefix)/opt/grep/libexec/gnubin" >> $GITHUB_PATH
if: matrix.os == 'macos-12'
# https://github.com/actions/cache/blob/main/examples.md#rust---cargo
- uses: actions/cache@v3
id: cache-cargo