From 2a88b44890b16b13a1047099e0d5e6e27bbf4bb6 Mon Sep 17 00:00:00 2001 From: Marc Platt <97549900+mplatt8@users.noreply.github.com> Date: Tue, 28 May 2024 17:28:55 -0400 Subject: [PATCH] Update workflow file --- .github/workflows/build.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0691e85..b415f21 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,9 +11,6 @@ on: jobs: build-macos: runs-on: macos-latest - env: - RPC_USER: "L2L" - RPC_PASSWORD: "drivechain" steps: - uses: actions/checkout@v3 @@ -123,12 +120,6 @@ jobs: chmod +x ./scripts/drivechainintegration.sh || echo "Drivechain script not found, skipping chmod" chmod +x ./scripts/functions.sh || echo "Function scrript not found, skipping chmod" chmod +x ./scripts/config.sh || echo "Config script not found, skipping chmod" - - name: Create drivechain configuration file - run: | - mkdir -p ~/.drivechain/ - echo "rpcuser=${{ env.RPC_USER }}" > ~/.drivechain/drivechain.conf - echo "rpcpassword=${{ env.RPC_PASSWORD }}" >> ~/.drivechain/drivechain.conf - echo "server=1" >> ~/.drivechain/drivechain.conf - name: Run Tests run: ./scripts/drivechainintegration.sh || echo "Script not found, skipping tests"