-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Revert "Revert "Revert "Remove the builds from stable for now…
…."""" This reverts commit af8c30c.
- Loading branch information
1 parent
5918d31
commit 734e87d
Showing
2 changed files
with
39 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,36 +13,36 @@ jobs: | |
- uses: actions/checkout@v2 | ||
- name: Build | ||
run: bash tools/gha_osx_heyoka_head.sh | ||
osx_10_15_heyoka_stable: | ||
runs-on: macos-10.15 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build | ||
run: bash tools/gha_osx_heyoka_stable.sh | ||
windows_2019_stable: | ||
runs-on: windows-2019 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Add msbuild to PATH | ||
uses: microsoft/[email protected] | ||
- uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
auto-update-conda: true | ||
python-version: 3.8 | ||
channels: conda-forge | ||
channel-priority: strict | ||
- name: Build | ||
shell: pwsh | ||
run: | | ||
conda config --set always_yes yes | ||
conda create --name heyoka python=3.8 pybind11 numpy cmake heyoka boost-cpp | ||
conda activate heyoka | ||
mkdir build | ||
cd build | ||
cmake ../ -G "Visual Studio 16 2019" -A x64 -DCMAKE_INSTALL_PREFIX=%CONDA_PREFIX_PATH% -DCMAKE_PREFIX_PATH=%CONDA_PREFIX_PATH% -DHEYOKA_PY_ENABLE_IPO=yes -DBoost_NO_BOOST_CMAKE=ON | ||
cmake --build . --config Release --target install | ||
cd c:\ | ||
python -c "from heyoka import test; test.run_test_suite()" | ||
# osx_10_15_heyoka_stable: | ||
# runs-on: macos-10.15 | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - name: Build | ||
# run: bash tools/gha_osx_heyoka_stable.sh | ||
# windows_2019_stable: | ||
# runs-on: windows-2019 | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - name: Add msbuild to PATH | ||
# uses: microsoft/[email protected] | ||
# - uses: conda-incubator/setup-miniconda@v2 | ||
# with: | ||
# auto-update-conda: true | ||
# python-version: 3.8 | ||
# channels: conda-forge | ||
# channel-priority: strict | ||
# - name: Build | ||
# shell: pwsh | ||
# run: | | ||
# conda config --set always_yes yes | ||
# conda create --name heyoka python=3.8 pybind11 numpy cmake heyoka boost-cpp | ||
# conda activate heyoka | ||
# mkdir build | ||
# cd build | ||
# cmake ../ -G "Visual Studio 16 2019" -A x64 -DCMAKE_INSTALL_PREFIX=%CONDA_PREFIX_PATH% -DCMAKE_PREFIX_PATH=%CONDA_PREFIX_PATH% -DHEYOKA_PY_ENABLE_IPO=yes -DBoost_NO_BOOST_CMAKE=ON | ||
# cmake --build . --config Release --target install | ||
# cd c:\ | ||
# python -c "from heyoka import test; test.run_test_suite()" | ||
binder_cache: | ||
runs-on: ubuntu-latest | ||
if: github.ref == 'refs/heads/main' | ||
|