Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
aliddell committed Apr 25, 2024
1 parent 9510741 commit ed6be98
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-aws-sdk-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
path: ${{github.workspace}}/../install

0 comments on commit ed6be98

Please sign in to comment.