diff options
author | Tristan Gingold <tgingold@free.fr> | 2023-01-17 18:26:24 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2023-01-17 18:26:24 +0100 |
commit | 0574c562f9b1152e1077323f1bd8e57c2afda544 (patch) | |
tree | 0c77f8ee773556f8d173a41e1cd515e4d0b51838 /.github/workflows | |
parent | 4514e2ed4abb166c932ac22b77968515e6fc3249 (diff) | |
download | ghdl-0574c562f9b1152e1077323f1bd8e57c2afda544.tar.gz ghdl-0574c562f9b1152e1077323f1bd8e57c2afda544.tar.bz2 ghdl-0574c562f9b1152e1077323f1bd8e57c2afda544.zip |
standalone pyGHDL: put libraries in lib (instead of bin)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/Test.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 03e8935de..3479353a0 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -421,7 +421,7 @@ jobs: _zipdir='${{ matrix.sys }}-mcode-standalone' mkdir -p "${_zipdir}"-extract tar xf artifact/mingw-w64-*-ghdl-mcode-*.zst -C "${_zipdir}"-extract - cd "${_zipdir}-extract/${{ matrix.sys }}"/bin + cd "${_zipdir}-extract/${{ matrix.sys }}"/lib ../../../scripts/msys2-mcode/GetStandaloneDeps.sh cd ../../.. mv "${_zipdir}"-extract/${{ matrix.sys }} "${_zipdir}" |