Skip to content

Commit 8acb197

Browse files
assignUserfacebook-github-bot
authored andcommitted
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
1 parent 8aceb24 commit 8acb197

13 files changed

+423
-826
lines changed

.circleci/README.md

-89
This file was deleted.

.circleci/config.yml

+7-18
Original file line numberDiff line numberDiff line change
@@ -17,28 +17,17 @@ version: 2.1
1717
# This allows us to use CircleCI's dynamic configuration feature
1818
setup: true
1919

20-
21-
# Path-filtering orb is required to continue a pipeline based on
22-
# the path of an updated fileset
23-
orbs:
24-
path-filtering: circleci/path-filtering@0.1.1
20+
jobs:
21+
noop-build:
22+
docker:
23+
- image: cimg/base:2024.02
24+
steps:
25+
- run: circleci-agent step halt
2526

2627
workflows:
2728
version: 2
2829

2930
path-filtering-workflow:
3031
jobs:
32+
- noop-build
3133

32-
- path-filtering/filter:
33-
name: check-sensitive-paths
34-
35-
# Format is: <regex path-to-test> <parameter-to-set> <value-of-pipeline-parameter>
36-
# Regex below will filter out paths with test in them.
37-
mapping: |
38-
velox/expression/((?!.*test).*).* run-longer-expression-fuzzer true
39-
velox/exec/((?!.*test).*).* run-longer-expression-fuzzer true
40-
velox/common/((?!.*test).*).* run-longer-expression-fuzzer true
41-
velox/core/((?!.*test).*).* run-longer-expression-fuzzer true
42-
velox/vector/((?!.*test).*).* run-longer-expression-fuzzer true
43-
44-
config-path: .circleci/dist_compile.yml

0 commit comments

Comments
 (0)