Skip to content

Commit

Permalink
Use Ubicloud for CI runners (#4027)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekSi authored Feb 7, 2024
1 parent 5536dac commit f5f46cd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ jobs:
run:
# make it short to fit in GitHub UI; all parameters are already in the caller's name
name: Run
runs-on: 4-cores

# https://www.ubicloud.com/docs/github-actions-integration/price-performance#usage-pricing
# https://docs.github.com/en/billing/managing-billing-for-github-actions/about-billing-for-github-actions#per-minute-rates
runs-on: ubicloud-standard-4

timeout-minutes: 20

steps:
Expand Down
2 changes: 1 addition & 1 deletion internal/handler/common/find.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ type FindParams struct {

ReturnKey bool `ferretdb:"returnKey,unimplemented-non-default"`
OplogReplay bool `ferretdb:"oplogReplay,ignored"`
NoCursorTimeout bool `ferretdb:"noCursorTimeout,unimplemented-non-default"`
NoCursorTimeout bool `ferretdb:"noCursorTimeout,unimplemented-non-default"` // TODO https://github.com/FerretDB/FerretDB/issues/4035
AllowPartialResults bool `ferretdb:"allowPartialResults,unimplemented-non-default"`
}

Expand Down
2 changes: 1 addition & 1 deletion website/docs/reference/supported-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Use ❌ for commands and arguments that are not implemented at all.
| | `showRecordId` || |
| | `tailable` || |
| | `oplogReplay` | ⚠️ | Ignored |
| | `noCursorTimeout` || Unimplemented |
| | `noCursorTimeout` || [Issue](https://github.com/FerretDB/FerretDB/issues/4035) |
| | `awaitData` || |
| | `allowPartialResults` || Unimplemented |
| | `collation` || Unimplemented |
Expand Down

0 comments on commit f5f46cd

Please sign in to comment.