Skip to content

Commit

Permalink
CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
anarthal committed Feb 27, 2024
1 parent bcf324d commit ec279d4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ else()
Boost::system
Boost::throw_exception
Boost::variant2
Boost::parser
Threads::Threads
OpenSSL::Crypto
OpenSSL::SSL
Expand Down
11 changes: 6 additions & 5 deletions tools/ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,11 @@ def _install_boost(
**({ 'dirs_exist_ok': True } if _supports_dir_exist_ok else {})
)


# Install Boost.Parser
if is_clean:
_run(["git", "clone", "-b", "develop", "--depth", "1", "https://github.com/tzlaine/parser.git", "libs/parser"])

# Install Boost dependencies
if is_clean:
_run(["git", "config", "submodule.fetchJobs", "8"])
Expand All @@ -119,10 +124,6 @@ def _install_boost(
else:
_run(['python', 'tools/boostdep/depinst/depinst.py', '../tools/quickbook'])

# Install Boost.Parser
if is_clean:
_run(["git", "clone", "-b", "develop", "--depth", "1", "https://github.com/tzlaine/parser.git", "libs/parser"])

# Bootstrap
if is_clean:
if _is_windows:
Expand Down Expand Up @@ -222,7 +223,7 @@ def _b2_build(
+ (['undefined-sanitizer=norecover'] if undefined_sanitizer else []) # can only be disabled by omitting the arg
+ [
'warnings=extra',
'warnings-as-errors=on',
'warnings-as-errors=off',
'-j4',
'libs/mysql/test',
'libs/mysql/test/integration//boost_mysql_integrationtests',
Expand Down

0 comments on commit ec279d4

Please sign in to comment.