forked from Tokutek/tokumxse
-
Notifications
You must be signed in to change notification settings - Fork 67
PSMDB-1884: fix clang-tidy workflow #1645
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
e6ededb
PSMDB-1884: fix appending args in bazel wraper hooks
plebioda e1eb0ee
PSMDB-1884: fix clang-tidy workflow
plebioda b10b07c
PSMDB-1884: update codeql-upload-sarif to v4
plebioda 7d94662
PSMDB-1884: fix fetching history for `bazel run format`
plebioda File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| name: "AWS SDK setup" | ||
| description: "AWS SDK C++ build and installation" | ||
|
|
||
| inputs: | ||
| aws-sdk-version: | ||
| description: "AWS SDK C++ version tag" | ||
| required: false | ||
| default: "1.9.379" | ||
|
|
||
| runs: | ||
| using: "composite" | ||
| steps: | ||
| - name: Repo cache | ||
| uses: actions/cache@v4 | ||
| id: repo-cache | ||
| with: | ||
| path: ~/aws-sdk-cpp | ||
| key: aws-sdk-cpp-${{ runner.os }}-${{ inputs.aws-sdk-version }} | ||
|
|
||
| - name: Setup repo | ||
| if: steps.repo-cache.outputs.cache-hit != 'true' | ||
| shell: bash | ||
| env: | ||
| AWS_SDK_VERSION: ${{ inputs.aws-sdk-version }} | ||
| run: | | ||
| cd ~ | ||
| git clone --branch "$AWS_SDK_VERSION" --depth 1 --recurse-submodules https://github.com/aws/aws-sdk-cpp.git | ||
| cd aws-sdk-cpp | ||
| curl -fsSL https://github.com/aws/aws-sdk-cpp/commit/0fba9f908d7ddc30aceab69b939f997330a44bb3.patch | git apply | ||
| mkdir build | ||
| cd build | ||
| cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_ONLY="s3;transfer" -DBUILD_SHARED_LIBS=OFF -DMINIMIZE_SIZE=ON -DCMAKE_INSTALL_PREFIX="/usr" | ||
|
|
||
| - name: Build and install | ||
| shell: bash | ||
| run: | | ||
| cd ~/aws-sdk-cpp/build | ||
| sudo cmake --build . --target install | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.