Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
zhoucheng361 committed Apr 19, 2024
1 parent 76d51b5 commit 6e58691
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/command2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ jobs:
echo "github.event_name is ${{github.event_name}}"
echo "GITHUB_REF_NAME is ${GITHUB_REF_NAME}"
if [ "${{github.event_name}}" == "schedule" ]; then
echo 'meta_matrix=["sqlite3", "mysql", "tikv", "tidb", "postgres", "mariadb", "fdb"]' >> $GITHUB_OUTPUT
echo 'meta_matrix=["sqlite3", "mysql", "tikv", "postgres", "mariadb", "fdb"]' >> $GITHUB_OUTPUT
elif [ "${{github.event_name}}" == "pull_request" ]; then
echo 'meta_matrix=["sqlite3", "mysql", "tikv", "tidb", "postgres", "mariadb", "fdb"]' >> $GITHUB_OUTPUT
echo 'meta_matrix=["mysql", "tikv"]' >> $GITHUB_OUTPUT
elif [ "${{github.event_name}}" == "workflow_dispatch" ]; then
echo 'meta_matrix=["sqlite3", "tikv"]' >> $GITHUB_OUTPUT
echo 'meta_matrix=["mysql", "tikv"]' >> $GITHUB_OUTPUT
else
echo 'meta_matrix=["sqlite3", "tikv"]' >> $GITHUB_OUTPUT
echo 'meta_matrix=["mysql", "tikv"]' >> $GITHUB_OUTPUT
fi
outputs:
meta_matrix: ${{ steps.set-matrix.outputs.meta_matrix }}
Expand Down

0 comments on commit 6e58691

Please sign in to comment.