-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/typed-sql-list-param
- Loading branch information
Showing
211 changed files
with
4,407 additions
and
3,204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ runs: | |
shell: bash | ||
run: | | ||
cargo binstall -y \ | ||
[email protected].92 \ | ||
[email protected].93 \ | ||
[email protected] | ||
- name: Install bc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,9 @@ on: | |
version: | ||
type: string | ||
required: true | ||
ubuntu: | ||
type: string | ||
default: 'latest' | ||
single_threaded: | ||
type: boolean | ||
default: false | ||
|
@@ -46,7 +49,9 @@ jobs: | |
PRISMA_ENGINE_PROTOCOL: ${{ matrix.engine_protocol }} | ||
PRISMA_RELATION_LOAD_STRATEGY: ${{ matrix.relation_load_strategy }} | ||
|
||
runs-on: ubuntu-latest | ||
runs-on: "ubuntu-20.04" | ||
# TODO: Replace with the following once `[email protected]` is released. | ||
# runs-on: "ubuntu-${{ inputs.ubuntu }}" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,6 +62,7 @@ jobs: | |
database: | ||
- name: mssql_2017 | ||
url: "sqlserver://localhost:1434;database=master;user=SA;password=<YourStrong@Passw0rd>;trustServerCertificate=true;socket_timeout=60;isolationLevel=READ UNCOMMITTED" | ||
ubuntu: "20.04" | ||
- name: mssql_2019 | ||
url: "sqlserver://localhost:1433;database=master;user=SA;password=<YourStrong@Passw0rd>;trustServerCertificate=true;socket_timeout=60;isolationLevel=READ UNCOMMITTED" | ||
- name: mssql_2022 | ||
|
@@ -104,7 +105,9 @@ jobs: | |
is_vitess: true | ||
single_threaded: true | ||
|
||
runs-on: ubuntu-latest | ||
runs-on: "ubuntu-20.04" | ||
# TODO: Replace with the following once `[email protected]` is released. | ||
# runs-on: "ubuntu-${{ matrix.database.ubuntu || 'latest' }}" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.