Skip to content

Commit

Permalink
Fix and update OS dependencies on Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
DaMandal0rian authored and tilacog committed Aug 15, 2023
1 parent 8117b8a commit 6e5e585
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ jobs:
--health-retries 5
steps:
- uses: actions/checkout@v2
- name: update OS
run: |
sudo apt-get update
sudo apt install -y --no-install-recommends gcc g++ make build-essential
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
Expand All @@ -47,5 +51,5 @@ jobs:
POSTGRES_TEST_DATABASE: indexer_tests
POSTGRES_TEST_USERNAME: testuser
POSTGRES_TEST_PASSWORD: testpass
NODE_OPTIONS: '--dns-result-order=ipv4first'
NODE_OPTIONS: "--dns-result-order=ipv4first"
INDEXER_TEST_JRPC_PROVIDER_URL: ${{ secrets.TESTS_RPC_PROVIDER }}
5 changes: 5 additions & 0 deletions .github/workflows/publish-native-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ jobs:
steps:
- name: Checkout the repo
uses: actions/checkout@v2
- name: update OS
run: |
sudo apt-get update
sudo apt install -y --no-install-recommends gcc g++ make build-essential
if: ${{ runner.os == 'Linux' }}
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/[email protected]
with:
Expand Down

0 comments on commit 6e5e585

Please sign in to comment.