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 ab41c9f commit a5ebd74
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build-aws-sdk-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,19 @@ jobs:
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
run: cmake -B ${{github.workspace}}/../build . -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/install -DBUILD_ONLY="s3" -DENABLE_TESTING=OFF -DBUILD_SHARED_LIBS=OFF
working-directory: ${{github.workspace}}/../aws-sdk-cpp

- name: Build
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}}
mv ${{github.workspace}}/../install/ ${{github.workspace}}/install
- 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 a5ebd74

Please sign in to comment.