From ed6be98437716a604a92233ea19447e3f1651282 Mon Sep 17 00:00:00 2001 From: Alan Liddell Date: Thu, 25 Apr 2024 16:51:14 -0400 Subject: [PATCH] wip --- .github/workflows/build-aws-sdk-cpp.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-aws-sdk-cpp.yml b/.github/workflows/build-aws-sdk-cpp.yml index 0e7800b6..294254c2 100644 --- a/.github/workflows/build-aws-sdk-cpp.yml +++ b/.github/workflows/build-aws-sdk-cpp.yml @@ -43,19 +43,19 @@ jobs: - name: Checkout submodules run: git submodule update --init --recursive - working-directory: ${{github.workspace}}/aws-sdk-cpp + working-directory: ${{github.workspace}}/../aws-sdk-cpp - name: Configure - run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/install -DBUILD_ONLY="s3" -DENABLE_TESTING=OFF aws-sdk-cpp + run: cmake -B ${{github.workspace}}/../build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/install -DBUILD_ONLY="s3" -DENABLE_TESTING=OFF aws-sdk-cpp - name: Build - run: cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}} + run: cmake --build ${{github.workspace}}/../build --config ${{matrix.build_type}} - name: Install - run: cmake --install ${{github.workspace}}/build --config ${{matrix.build_type}} + run: cmake --install ${{github.workspace}}/../build --config ${{matrix.build_type}} - name: Upload uses: actions/upload-artifact@v2 with: name: aws-sdk-cpp-${{matrix.build_type}}-${{matrix.platform}} - path: ${{github.workspace}}/install \ No newline at end of file + path: ${{github.workspace}}/../install \ No newline at end of file