Skip to content

Commit

Permalink
Merge pull request #7681 from Xuanwo/fix-ci
Browse files Browse the repository at this point in the history
ci: Fix Github Action can't use matrix in uses
  • Loading branch information
Xuanwo authored Sep 17, 2022
2 parents bd95e0e + ec9ba43 commit 0e442ff
Showing 1 changed file with 28 additions and 11 deletions.
39 changes: 28 additions & 11 deletions .github/workflows/dev-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,22 +145,39 @@ jobs:
with:
dirs: ${{ matrix.dirs }}

test_state_linux:
test_stateless_standalone_linux:
timeout-minutes: 20
name: test_${{ matrix.state }}_${{ matrix.mode }}_linux
runs-on: [self-hosted, X64, Linux, development]
needs: build_gnu
strategy:
matrix:
state:
- "stateful"
- "stateless"
mode:
- "standalone"
- "cluster"
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/test_${{ matrix.state }}_${{ matrix.mode }}_linux
- uses: ./.github/actions/test_stateless_standalone_linux

test_stateless_cluster_linux:
timeout-minutes: 20
runs-on: [self-hosted, X64, Linux, development]
needs: build_gnu
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/test_stateless_cluster_linux

test_stateful_standalone_linux:
timeout-minutes: 20
runs-on: [ self-hosted, X64, Linux, development ]
needs: build_gnu
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/test_stateful_standalone_linux

# Wait for issue https://github.com/datafuselabs/databend/issues/7684
#
# test_stateful_cluster_linux:
# timeout-minutes: 20
# runs-on: [ self-hosted, X64, Linux, development ]
# needs: build_gnu
# steps:
# - uses: actions/checkout@v3
# - uses: ./.github/actions/test_stateful_cluster_linux

test_fuzz_standalone_linux:
timeout-minutes: 10
Expand Down

1 comment on commit 0e442ff

@vercel
Copy link

@vercel vercel bot commented on 0e442ff Sep 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

databend – ./

databend-databend.vercel.app
databend-git-main-databend.vercel.app
databend.vercel.app
databend.rs

Please sign in to comment.