Skip to content

Commit

Permalink
Try to install in local directory, because of artifact collection.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Aug 6, 2024
1 parent faf826a commit f7fadb3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/Pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,9 @@ jobs:
echo "which llvm-config: $(which llvm-config) ($($(which llvm-config) --version))"
- name: Prepare build environemnt
run: mkdir -p build/${{ matrix.backend }}
run: |
mkdir -p build/${{ matrix.backend }}
mkdir -p install
- name: ⚙ Configure
run: |
Expand All @@ -225,7 +227,7 @@ jobs:
NPROC=$(nproc)
GNATMAKE="gnatmake -j$NPROC" \
MAKE="make -j$NPROC" \
../../configure --prefix=/opt/ghdl-${{ matrix.runtime }}-${{ matrix.backend }} $LLVM_ARGS
../../configure --prefix=../install/ghdl-${{ matrix.runtime }}-${{ matrix.backend }} $LLVM_ARGS
- name: 🔨 Make
run: |
Expand All @@ -247,7 +249,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: ghdl-windows-${{ matrix.runtime }}-${{ matrix.backend }}
path: /opt/ghdl-${{ matrix.runtime }}-${{ matrix.backend }}/
path: ./install/ghdl-${{ matrix.runtime }}-${{ matrix.backend }}/
if-no-files-found: error
retention-days: 1

Expand Down

0 comments on commit f7fadb3

Please sign in to comment.