-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I added this definition to support a user, figured I'd add it here too Also fixes the squawk test constraints.
- Loading branch information
1 parent
a3fab51
commit 0d769b6
Showing
3 changed files
with
37 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
import { linterCheckTest } from "tests"; | ||
|
||
linterCheckTest({ linterName: "squawk" }); | ||
// No release for squawk on arm64 darwin https://github.com/sbdchd/squawk/issues/372 | ||
linterCheckTest({ | ||
linterName: "squawk", | ||
skipTestIf: () => process.arch === "arm64" && process.platform === "darwin", | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { toolInstallTest } from "tests"; | ||
|
||
toolInstallTest({ | ||
toolName: "dbt-cli", | ||
toolVersion: "0.38.14", | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
version: 0.1 | ||
downloads: | ||
- name: dbt-cli | ||
version: 0.38.14 | ||
downloads: | ||
- os: | ||
linux: linux | ||
cpu: | ||
x86_64: amd64 | ||
arm_64: arm64 | ||
url: https://github.com/dbt-labs/dbt-cli/releases/download/v${version}/dbt_${version}_${os}_${cpu}.tar.gz | ||
- os: | ||
macos: darwin | ||
url: https://github.com/dbt-labs/dbt-cli/releases/download/v${version}/dbt_${version}_darwin_all.tar.gz | ||
- os: | ||
windows: windows | ||
url: https://github.com/dbt-labs/dbt-cli/releases/download/v${version}/dbt_${version}_windows_amd64.tar.gz | ||
tools: | ||
definitions: | ||
- name: dbt-cli | ||
download: dbt-cli | ||
known_good_version: 0.38.14 | ||
shims: [dbt] | ||
health_checks: | ||
- command: dbt --version | ||
parse_regex: dbt Cloud CLI - ${semver} |