Skip to content

Commit

Permalink
chore: update versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
karenc-bq committed Aug 29, 2024
1 parent 863aef9 commit b5f6600
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ jobs:
working-directory: ${{ github.workspace }}/build
run: |
cmake --build . --config $BUILD_TYPE
cp -r lib/Release/* C:/Windows/System32/
cp -r bin/Release/* C:/Windows/System32/
cp -r lib/* C:/Windows/System32/
cp -r bin/$BUILD_TYPE/* C:/Windows/System32/
- name: Add DSN to registry
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_aws_sdk_unix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ AWS_INSTALL_DIR=$AWS_SRC_DIR/../install

mkdir -p $AWS_SRC_DIR $AWS_BUILD_DIR $AWS_INSTALL_DIR

git clone --recurse-submodules -b "1.11.390" "https://github.com/aws/aws-sdk-cpp.git" $AWS_SRC_DIR
git clone --recurse-submodules -b "1.11.394" "https://github.com/aws/aws-sdk-cpp.git" $AWS_SRC_DIR

cmake -S $AWS_SRC_DIR -B $AWS_BUILD_DIR -DCMAKE_INSTALL_PREFIX="${AWS_INSTALL_DIR}" -DCMAKE_BUILD_TYPE="${CONFIGURATION}" -DBUILD_ONLY="rds;secretsmanager;sts" -DENABLE_TESTING="OFF" -DBUILD_SHARED_LIBS="ON" -DCPP_STANDARD="14"
cd $AWS_BUILD_DIR
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_aws_sdk_win.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Write-Host $args
# Make AWS SDK source directory
New-Item -Path $SRC_DIR -ItemType Directory -Force | Out-Null
# Clone the AWS SDK CPP repo
git clone --recurse-submodules -b "1.11.390" "https://github.com/aws/aws-sdk-cpp.git" $SRC_DIR
git clone --recurse-submodules -b "1.11.394" "https://github.com/aws/aws-sdk-cpp.git" $SRC_DIR

# Make and move to build directory
New-Item -Path $BUILD_DIR -ItemType Directory -Force | Out-Null
Expand Down

0 comments on commit b5f6600

Please sign in to comment.