diff --git a/.github/workflows/bundle_with_dakota_macos.yml b/.github/workflows/bundle_with_dakota_macos.yml index 48e1226..1a3629c 100644 --- a/.github/workflows/bundle_with_dakota_macos.yml +++ b/.github/workflows/bundle_with_dakota_macos.yml @@ -101,7 +101,7 @@ jobs: mkdir -p /tmp/build cd /tmp/build BOOST_VERSION_UNDERSCORES=$(echo ${{ inputs.BOOST_VERSION }} | sed 's/\./_/g') - wget --quiet https://boostorg.jfrog.io/artifactory/main/release/${{ inputs.BOOST_VERSION }}/source/boost_${BOOST_VERSION_UNDERSCORES}.tar.gz + wget --quiet https://sourceforge.net/projects/boost/files/boost/${{ inputs.BOOST_VERSION }}/boost_${BOOST_VERSION_UNDERSCORES}.tar.gz tar -xf boost_${BOOST_VERSION_UNDERSCORES}.tar.gz cd boost_${BOOST_VERSION_UNDERSCORES} ./bootstrap.sh --with-libraries=python,filesystem,program_options,regex,serialization,system --with-python-version=${{ matrix.python_version }} diff --git a/dakota_manylinux_install_files/build_deps_gha.sh b/dakota_manylinux_install_files/build_deps_gha.sh index 5075832..3e1cfff 100644 --- a/dakota_manylinux_install_files/build_deps_gha.sh +++ b/dakota_manylinux_install_files/build_deps_gha.sh @@ -30,7 +30,7 @@ yum install -y wget cd /tmp BOOST_VERSION_UNDERSCORES=$(echo $BOOST_VERSION | sed 's/\./_/g') -wget https://boostorg.jfrog.io/artifactory/main/release/$BOOST_VERSION/source/boost_$BOOST_VERSION_UNDERSCORES.tar.bz2 --no-check-certificate > /dev/null +wget --quiet https://sourceforge.net/projects/boost/files/boost/${BOOST_VERSION}/boost_${BOOST_VERSION_UNDERSCORES}.tar.bz2 --no-check-certificate > /dev/null python_exec=$(which python$1) $python_exec -m venv myvenv source ./myvenv/bin/activate