Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
polkadot-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
parity
Mirrored projects
polkadot-sdk
Commits
b3c2a25b
Unverified
Commit
b3c2a25b
authored
8 months ago
by
Yuri Volkov
Committed by
GitHub
8 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Moving `Find FAIL-CI` check to GHA (#5377)
parent
d26d7f1d
No related merge requests found
Pipeline
#492498
waiting for manual action with stages
in 1 hour, 20 minutes, and 29 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.github/workflows/checks-quick.yml
+25
-0
25 additions, 0 deletions
.github/workflows/checks-quick.yml
.gitlab/pipeline/check.yml
+0
-20
0 additions, 20 deletions
.gitlab/pipeline/check.yml
with
25 additions
and
20 deletions
.github/workflows/checks-quick.yml
+
25
−
0
View file @
b3c2a25b
...
...
@@ -156,3 +156,28 @@ jobs:
git diff
exit 1
fi
check-fail-ci
:
runs-on
:
ubuntu-latest
container
:
# there's no "rg" in ci-unified, and tools is a smaller image anyway
image
:
"
paritytech/tools:latest"
# paritytech/tools uses "nonroot" user by default, which doesn't have enough
# permissions to create GHA context
options
:
--user root
steps
:
-
name
:
Fetch latest code
uses
:
actions/checkout@v4
-
name
:
Check
run
:
|
set +e
rg --line-number --hidden --type rust --glob '!{.git,target}' "$ASSERT_REGEX" .; exit_status=$?
if [ $exit_status -eq 0 ]; then
echo "$ASSERT_REGEX was found, exiting with 1";
exit 1;
else
echo "No $ASSERT_REGEX was found, exiting with 0";
exit 0;
fi
env
:
ASSERT_REGEX
:
"
FAIL-CI"
GIT_DEPTH
:
1
This diff is collapsed.
Click to expand it.
.gitlab/pipeline/check.yml
+
0
−
20
View file @
b3c2a25b
...
...
@@ -122,26 +122,6 @@ check-runtime-migration-rococo:
URI
:
"
wss://rococo-try-runtime-node.parity-chains.parity.io:443"
SUBCOMMAND_EXTRA_ARGS
:
"
--no-weight-warnings"
find-fail-ci-phrase
:
stage
:
check
variables
:
CI_IMAGE
:
"
paritytech/tools:latest"
ASSERT_REGEX
:
"
FAIL-CI"
GIT_DEPTH
:
1
extends
:
-
.kubernetes-env
-
.test-pr-refs
script
:
-
set +e
-
rg --line-number --hidden --type rust --glob '!{.git,target}' "$ASSERT_REGEX" .; exit_status=$?
-
if [ $exit_status -eq 0 ]; then
echo "$ASSERT_REGEX was found, exiting with 1";
exit 1;
else
echo "No $ASSERT_REGEX was found, exiting with 0";
exit 0;
fi
check-core-crypto-features
:
stage
:
check
extends
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment