boostorg / boost

Super-project for modularized Boost
https://github.com/boostorg/wiki/wiki/Getting-Started%3A-Overview
Boost Software License 1.0
7.02k stars 1.73k forks source link

Missing change in Boost 1.80.0 Unix distributable as opposed to the Windows one #884

Open gaussianrecurrence opened 1 year ago

gaussianrecurrence commented 1 year ago

When downloading Boost 1.80.0 (Unix distributable): https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.tar.gz And Boost 1.80.0 (Windows distributable): https://boostorg.jfrog.io/artifactory/main/release/1.80.0/source/boost_1_80_0.zip I noticed there is an small diff in boost/dynamic_bitset/dynamic_bitset.hpp, which matches the change introduced by boostorg/dynamic_bitset#64 In the case of the Windows distributable boostorg/dynamic_bitset#64 IS included, but in the case of the Unix distributable boostorg/dynamic_bitset#64 it is NOT included. So I was wondering if there is an specific reason for this delta or if this is not supposed to be like that?

sdarwin commented 5 months ago

A similar problem happened today. In this case it appears to have been caused by circleci. Three jobs started at the same time. An earlier commit took longer to finish building, and uploaded last, overwriting the newer commit.

The commit-bot script may be replaced/upgraded soon. In the new script, a feature could potentially be added to handle this case.

glenfe commented 5 months ago

@sdarwin thank you!

Lastique commented 5 months ago

Is it possible to run jobs of the same kind (e.g. from commits on the same branch) serially?