-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: don't run
threads
tests in Windows GHA CI (attempt 2) (#530)
* CI: don't run `threads` tests in Windows GHA CI * Change some `@info`s to `@debug`s
- Loading branch information
1 parent
7408e4b
commit 08d6ae1
Showing
2 changed files
with
47 additions
and
24 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
function is_github_actions_ci() | ||
is_ci = parse(Bool, get(ENV, "CI", "false")) | ||
is_gha = parse(Bool, get(ENV, "GITHUB_ACTIONS", "false")) | ||
|
||
return is_ci && is_gha | ||
end |