mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Change requires_nothing to no_dependencies
This commit is contained in:
parent
0bed2ac642
commit
f42fe95781
@ -435,7 +435,7 @@ defaults:
|
||||
only:
|
||||
- develop
|
||||
|
||||
- requires_nothing: &requires_nothing
|
||||
- no_dependencies: &no_dependencies
|
||||
<<: *on_all_tags_and_branches
|
||||
|
||||
- requires_b_ubu: &requires_b_ubu
|
||||
@ -1567,52 +1567,52 @@ workflows:
|
||||
main:
|
||||
jobs:
|
||||
# basic checks
|
||||
- chk_spelling: *requires_nothing
|
||||
- chk_coding_style: *requires_nothing
|
||||
# DISABLED FOR 0.6.0 - chk_docs_examples: *requires_nothing
|
||||
- chk_buglist: *requires_nothing
|
||||
- chk_proofs: *requires_nothing
|
||||
- chk_pylint: *requires_nothing
|
||||
- chk_errorcodes: *requires_nothing
|
||||
- chk_antlr_grammar: *requires_nothing
|
||||
- chk_docs_pragma_min_version: *requires_nothing
|
||||
- t_ubu_pyscripts: *requires_nothing
|
||||
- t_win_pyscripts: *requires_nothing
|
||||
- chk_spelling: *no_dependencies
|
||||
- chk_coding_style: *no_dependencies
|
||||
# DISABLED FOR 0.6.0 - chk_docs_examples: *no_dependencies
|
||||
- chk_buglist: *no_dependencies
|
||||
- chk_proofs: *no_dependencies
|
||||
- chk_pylint: *no_dependencies
|
||||
- chk_errorcodes: *no_dependencies
|
||||
- chk_antlr_grammar: *no_dependencies
|
||||
- chk_docs_pragma_min_version: *no_dependencies
|
||||
- t_ubu_pyscripts: *no_dependencies
|
||||
- t_win_pyscripts: *no_dependencies
|
||||
|
||||
# build-only
|
||||
- b_docs: *requires_nothing
|
||||
# DISABLED FOR 0.8.18 - b_ubu_cxx20: *requires_nothing
|
||||
- b_docs: *no_dependencies
|
||||
# DISABLED FOR 0.8.18 - b_ubu_cxx20: *no_dependencies
|
||||
# Issue: https://github.com/ethereum/solidity/issues/13868
|
||||
- b_ubu_ossfuzz: *requires_nothing
|
||||
- b_ubu_ossfuzz: *no_dependencies
|
||||
|
||||
# OS/X build and tests
|
||||
- b_osx: *requires_nothing
|
||||
- b_osx: *no_dependencies
|
||||
- t_osx_cli: *requires_b_osx
|
||||
- t_osx_soltest: *requires_b_osx
|
||||
|
||||
# ArchLinux build and tests
|
||||
- b_archlinux: *requires_nothing
|
||||
- b_archlinux: *no_dependencies
|
||||
- t_archlinux_soltest: *requires_b_archlinux
|
||||
|
||||
# Static build
|
||||
- b_ubu_static: *requires_nothing
|
||||
- b_ubu_static: *no_dependencies
|
||||
|
||||
# Ubuntu build and tests
|
||||
- b_ubu: *requires_nothing
|
||||
- b_ubu: *no_dependencies
|
||||
- t_ubu_cli: *requires_b_ubu
|
||||
- t_ubu_locale: *requires_b_ubu
|
||||
- t_ubu_soltest_all: *requires_b_ubu
|
||||
- b_ubu_clang: *requires_nothing
|
||||
- b_ubu_clang: *no_dependencies
|
||||
- t_ubu_clang_soltest: *requires_b_ubu_clang
|
||||
- t_ubu_lsp: *requires_b_ubu
|
||||
|
||||
# Ubuntu fake release build and tests
|
||||
- b_ubu_force_release: *requires_nothing
|
||||
- b_ubu_force_release: *no_dependencies
|
||||
- t_ubu_force_release_cli: *requires_b_ubu_force_release
|
||||
- t_ubu_force_release_soltest_all: *requires_b_ubu_force_release
|
||||
|
||||
# Emscripten build and tests that take 15 minutes or less
|
||||
- b_ems: *requires_nothing
|
||||
- b_ems: *no_dependencies
|
||||
- t_ems_solcjs: *requires_b_ems
|
||||
- t_ems_ext_hardhat: *requires_b_ems
|
||||
|
||||
@ -1635,7 +1635,7 @@ workflows:
|
||||
- t_ext: *job_native_test_ext_gp2
|
||||
|
||||
- c_ext_benchmarks:
|
||||
<<: *requires_nothing
|
||||
<<: *no_dependencies
|
||||
requires:
|
||||
- t_ems_compile_ext_colony
|
||||
- t_native_test_ext_gnosis
|
||||
@ -1655,32 +1655,32 @@ workflows:
|
||||
- t_native_test_ext_gp2
|
||||
|
||||
# Windows build and tests
|
||||
- b_win: *requires_nothing
|
||||
- b_win: *no_dependencies
|
||||
- t_win_soltest: *requires_b_win
|
||||
|
||||
# Bytecode comparison:
|
||||
- b_bytecode_ubu_static:
|
||||
<<: *requires_nothing
|
||||
<<: *no_dependencies
|
||||
requires:
|
||||
- b_ubu_static
|
||||
- b_bytecode_ubu:
|
||||
<<: *requires_nothing
|
||||
<<: *no_dependencies
|
||||
requires:
|
||||
- b_ubu
|
||||
- b_bytecode_win:
|
||||
<<: *requires_nothing
|
||||
<<: *no_dependencies
|
||||
requires:
|
||||
- b_win
|
||||
- b_bytecode_osx:
|
||||
<<: *requires_nothing
|
||||
<<: *no_dependencies
|
||||
requires:
|
||||
- b_osx
|
||||
- b_bytecode_ems:
|
||||
<<: *requires_nothing
|
||||
<<: *no_dependencies
|
||||
requires:
|
||||
- b_ems
|
||||
- t_bytecode_compare:
|
||||
<<: *requires_nothing
|
||||
<<: *no_dependencies
|
||||
requires:
|
||||
- b_bytecode_ubu_static
|
||||
- b_bytecode_ubu
|
||||
@ -1706,15 +1706,15 @@ workflows:
|
||||
|
||||
jobs:
|
||||
# OSSFUZZ builds and (regression) tests
|
||||
- b_ubu_ossfuzz: *requires_nothing
|
||||
- b_ubu_ossfuzz: *no_dependencies
|
||||
- t_ubu_ossfuzz: *requires_b_ubu_ossfuzz
|
||||
|
||||
# Code Coverage enabled build and tests
|
||||
- b_ubu_codecov: *requires_nothing
|
||||
- b_ubu_codecov: *no_dependencies
|
||||
- t_ubu_codecov: *requires_b_ubu_codecov
|
||||
|
||||
# ASan build and tests
|
||||
- b_ubu_asan: *requires_nothing
|
||||
- b_ubu_asan: *no_dependencies
|
||||
- b_ubu_san_clang: *job_b_ubu_asan_clang
|
||||
- t_ubu_asan_soltest: *requires_b_ubu_asan
|
||||
- t_ubu_asan_clang_soltest: *requires_b_ubu_asan_clang
|
||||
@ -1726,5 +1726,5 @@ workflows:
|
||||
- t_ubu_ubsan_clang_cli: *requires_b_ubu_ubsan_clang
|
||||
|
||||
# Emscripten build and tests that take more than 15 minutes to execute
|
||||
- b_ems: *requires_nothing
|
||||
- b_ems: *no_dependencies
|
||||
- t_ext: *job_ems_test_ext_colony
|
||||
|
Loading…
Reference in New Issue
Block a user