File tree Expand file tree Collapse file tree 12 files changed +101
-0
lines changed
Expand file tree Collapse file tree 12 files changed +101
-0
lines changed Original file line number Diff line number Diff line change 1+ import ' ../lib.just'
2+
3+ [group (' build' )]
4+ build : (_build_dist " csharp" )
5+
6+ [group (' test' )]
7+ language-tests * EXTRA_ARGS : (_language_tests EXTRA_ARGS source_dir () ' ql/test' )
Original file line number Diff line number Diff line change 1+ import " ../../lib.just"
2+
3+ [no-cd ]
4+ format * ARGS = " .": (_format_ql ARGS)
5+
6+ consistency_queries := source_dir () / " consistency-queries"
Original file line number Diff line number Diff line change 1+ import " ../justfile"
2+
3+ base_flags := " "
4+
5+ all_checks := default_db_checks + """ \
6+ --check-undefined-labels \
7+ --check-repeated-labels \
8+ --check-redefined-labels \
9+ --additional-packs=ql \
10+ --consistency-queries=""" + consistency_queries
11+
12+ [no-cd ]
13+ test * ARGS = " .": (_codeql_test " csharp" base_flags all_checks ARGS)
Original file line number Diff line number Diff line change 1+ import ' ../lib.just'
2+
3+ [group (' build' )]
4+ build : (_build_dist " go" )
5+
6+ [group (' test' )]
7+ language-tests * EXTRA_ARGS : (_language_tests EXTRA_ARGS source_dir () ' ql/test' )
Original file line number Diff line number Diff line change 1+ import " ../../lib.just"
2+
3+ [no-cd ]
4+ format * ARGS = " .": (_format_ql ARGS)
5+
6+ consistency_queries := source_dir () / " consistency-queries"
Original file line number Diff line number Diff line change 1+ import " ../justfile"
2+
3+ base_flags := " "
4+
5+ all_checks := default_db_checks + """ \
6+ --check-undefined-labels \
7+ --check-unused-labels \
8+ --check-repeated-labels \
9+ --check-redefined-labels \
10+ --check-use-before-definition \
11+ --consistency-queries=""" + consistency_queries
12+
13+ [no-cd ]
14+ test * ARGS = " .": (_codeql_test " go" base_flags all_checks ARGS)
Original file line number Diff line number Diff line change 1+ import ' ../lib.just'
2+
3+ [group (' build' )]
4+ build : (_build_dist " javascript" )
5+
6+ [group (' test' )]
7+ language-tests * EXTRA_ARGS : (_language_tests EXTRA_ARGS source_dir () ' ql/test' )
Original file line number Diff line number Diff line change 1+ import " ../../lib.just"
2+
3+ [no-cd ]
4+ format * ARGS = " .": (_format_ql ARGS)
5+
6+ consistency_queries := " "
Original file line number Diff line number Diff line change 1+ import " ../justfile"
2+
3+ base_flags := " "
4+
5+ all_checks := default_db_checks
6+
7+ [no-cd ]
8+ test * ARGS = " .": (_codeql_test " javascript" base_flags all_checks ARGS)
Original file line number Diff line number Diff line change 1+ import ' ../lib.just'
2+
3+ [group (' build' )]
4+ build : (_build_dist " ruby" )
5+
6+ [group (' test' )]
7+ language-tests * EXTRA_ARGS : (_language_tests EXTRA_ARGS source_dir () ' ql/test' )
You can’t perform that action at this time.
0 commit comments