We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a941867 commit 4672840Copy full SHA for 4672840
1 file changed
plugins/provider-circleci/src/main.rs
@@ -542,14 +542,6 @@ fn build_workflow_jobs_sequence(variants: &[JobVariant]) -> Vec<Value> {
542
fn convert_job(variant: &JobVariant, context: &CircleciContext) -> Result<Option<Value>> {
543
let job = variant.job;
544
545
- if job.id == "ci/js_lint" {
546
- eprintln!(
547
- "DEBUG: convert_job ci/js_lint. source_files len: {}",
548
- job.source_files.len()
549
- );
550
- eprintln!("DEBUG: source_files: {:?}", job.source_files);
551
- }
552
-
553
// Skip approval jobs in definition list (they only appear in workflows)
554
if let Some(extra_type) = job.extra.get("type") {
555
if let Ok(val) = parse_yaml_value(extra_type) {
0 commit comments