forked from facebookincubator/velox
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move signature check and bias fuzzer to gha (facebookincubator#9191)
Summary: Move the signature check and bias fuzzer from CCI to GHA. Pull Request resolved: facebookincubator#9191 Reviewed By: Yuhta Differential Revision: D55599384 Pulled By: kgpai fbshipit-source-id: b998a064319f451ebe2d3508f3dbca3d165a669a
- Loading branch information
1 parent
8aceb24
commit 8acb197
Showing
13 changed files
with
423 additions
and
826 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,28 +17,17 @@ version: 2.1 | |
# This allows us to use CircleCI's dynamic configuration feature | ||
setup: true | ||
|
||
|
||
# Path-filtering orb is required to continue a pipeline based on | ||
# the path of an updated fileset | ||
orbs: | ||
path-filtering: circleci/[email protected] | ||
jobs: | ||
noop-build: | ||
docker: | ||
- image: cimg/base:2024.02 | ||
steps: | ||
- run: circleci-agent step halt | ||
|
||
workflows: | ||
version: 2 | ||
|
||
path-filtering-workflow: | ||
jobs: | ||
- noop-build | ||
|
||
- path-filtering/filter: | ||
name: check-sensitive-paths | ||
|
||
# Format is: <regex path-to-test> <parameter-to-set> <value-of-pipeline-parameter> | ||
# Regex below will filter out paths with test in them. | ||
mapping: | | ||
velox/expression/((?!.*test).*).* run-longer-expression-fuzzer true | ||
velox/exec/((?!.*test).*).* run-longer-expression-fuzzer true | ||
velox/common/((?!.*test).*).* run-longer-expression-fuzzer true | ||
velox/core/((?!.*test).*).* run-longer-expression-fuzzer true | ||
velox/vector/((?!.*test).*).* run-longer-expression-fuzzer true | ||
config-path: .circleci/dist_compile.yml |
Oops, something went wrong.