From f7fadb34cb67982491717d290eaa9d936a87fc45 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Tue, 6 Aug 2024 23:11:01 +0200 Subject: [PATCH] Try to install in local directory, because of artifact collection. --- .github/workflows/Pipeline.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Pipeline.yml b/.github/workflows/Pipeline.yml index 0e5b13a..43cea0d 100644 --- a/.github/workflows/Pipeline.yml +++ b/.github/workflows/Pipeline.yml @@ -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: | @@ -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: | @@ -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