Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/risingwavelabs/risingwave i…
Browse files Browse the repository at this point in the history
…nto li0k/storage_remove_unused_code
  • Loading branch information
Li0k committed Jun 13, 2024
2 parents 9f01ec0 + a3da000 commit 8cea354
Show file tree
Hide file tree
Showing 167 changed files with 3,829 additions and 1,736 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,23 @@ name: Mark stale issues and pull requests
on:
schedule:
- cron: '30 1 * * *'
workflow_dispatch:
inputs:
# https://github.com/marketplace/actions/close-stale-issues#operations-per-run
operationsPerRun:
description: 'Max number of operations per run'
required: true
default: 30

jobs:
stale:

runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write

steps:
- uses: actions/stale@v5
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: >
Expand All @@ -25,3 +31,6 @@ jobs:
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'
days-before-close: -1
days-before-pr-close: 7
operations-per-run: ${{ github.event.inputs.operationsPerRun }}
enable-statistics: true
174 changes: 169 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion ci/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.9"
services:
db:
image: postgres:15-alpine
Expand Down Expand Up @@ -100,6 +99,7 @@ services:
- doris-server
- starrocks-fe-server
- starrocks-be-server
- sqlserver-server
volumes:
- ..:/risingwave

Expand Down Expand Up @@ -204,6 +204,16 @@ services:
timeout: 5s
retries: 30

sqlserver-server:
container_name: sqlserver-server
image: mcr.microsoft.com/mssql/server:2022-latest
hostname: sqlserver-server
ports:
- 1433:1433
environment:
ACCEPT_EULA: 'Y'
SA_PASSWORD: 'SomeTestOnly@SA'

starrocks-fe-server:
container_name: starrocks-fe-server
image: starrocks/fe-ubuntu:3.1.7
Expand Down
Loading

0 comments on commit 8cea354

Please sign in to comment.