Skip to content

Commit

Permalink
Removed the environment variables again
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Lanser <[email protected]>
  • Loading branch information
Tommylans committed Dec 20, 2022
1 parent 7493ea3 commit 6d3566e
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,24 +65,23 @@ jobs:
name: Build for Windows and Provide artifacts
runs-on: windows-2019

env:
LD_LIBRARY_PATH: C:\libindy\lib

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Setup Libindy
run: |
curl.exe --output libindy.zip https://repo.sovrin.org/windows/libindy/master/1.16.0-1636/libindy_1.16.0.zip
7z x libindy.zip -oC:\libindy\
$env:LD_LIBRARY_PATH = 'C:\libindy\lib'
$env:Path += ';C:\libindy\lib'
yarn global add --production windows-build-tools
yarn config set msvs_version 2019
yarn global add node-gyp-install
yarn global add node-gyp
curl.exe --output libindy.zip https://repo.sovrin.org/windows/libindy/master/1.16.0-1636/libindy_1.16.0.zip
7z x libindy.zip -oC:\libindy\
$env:LD_LIBRARY_PATH = 'C:\libindy\lib'
$env:Path += ';C:\libindy\lib'
npx -p @aries-framework/node is-indy-installed
- name: Test libindy installation
run: npx -p @aries-framework/node is-indy-installed
Expand Down

0 comments on commit 6d3566e

Please sign in to comment.