Skip to content
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

Update CMakeLists.txt #3

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion .github/workflows/build_and_test_ondemand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,22 @@ on:
test_label_regexp:
required: false
type: string
image:
type: string
required: false
default: fd8snjpoq85qqv0mk9gi
workflow_dispatch:
inputs:
sanitizer:
required: false
type: string
test_label_regexp:
required: false
type: string
image:
type: string
required: false
default: fd8snjpoq85qqv0mk9gi

jobs:

Expand All @@ -28,7 +44,7 @@ jobs:
yc-sa-json-credentials: ${{ secrets.YC_SA_JSON_CREDENTIALS }}
github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
folder-id: ${{secrets.YC_FOLDER}}
image-id: fd8snjpoq85qqv0mk9gi
image-id: ${{inputs.image}}
disk-size: 930GB
disk-type: network-ssd-nonreplicated
cores: 32
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_check.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: PR check
on:
pull_request_target:
types: [ opened, edited, reopened ]
branches:
- 'main'
paths-ignore:
Expand All @@ -10,6 +9,7 @@ on:
jobs:
build_and_test:
uses: ./.github/workflows/build_and_test_ondemand.yml
if: github.event.review.state == 'approved'
with:
test_label_regexp: '(SMALL|MEDIUM)'
secrets: inherit
5 changes: 5 additions & 0 deletions .github/workflows/prepare_vm_for_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ on:
secrets:
rc_auth:
required: false
workflow_dispatch:
inputs:
runner_label:
required: true
type: string

jobs:
prepare:
Expand Down
2 changes: 2 additions & 0 deletions ydb/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ add_subdirectory(core)
add_subdirectory(library)
add_subdirectory(public)
add_subdirectory(services)