Fixing conda binary build via optional RMS install (dependent on #2631) #46
Workflow file for this run
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
name: Conda Build | |
on: | |
pull_request: | |
push: | |
branches: | |
- stable | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Conda | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: false | |
conda-solver: libmamba | |
auto-activate-base: true | |
activate-environment: "" | |
- name: Install Build Tools | |
run: conda install python anaconda-client conda-build | |
- name: Configure Auto-Upload | |
if: github.ref == 'refs/heads/stable' | |
run: | | |
conda config --set anaconda_upload yes | |
- name: Build Binary | |
env: | |
CONDA_TOKEN: "need_to_add_this_secret" # ${{ secrets.ANACONDA_TOKEN }} | |
run: | | |
conda config --add channels rmg | |
conda config --add channels cantera | |
conda config --add channels conda-forge | |
conda config --add channels jacksonburns | |
conda-build --token $CONDA_TOKEN --user rmg .conda | |
- name: Test Binary Install with RMS | |
run: | | |
conda create --name rmg_test python=3.7* | |
conda activate rmg_test | |
conda install -c local rmg | |
conda install -c conda-forge julia=1.9.1 pyjulia>=0.6 | |
conda install -c rmg pyrms diffeqpy | |
python -c "import julia; julia.install(); import diffeqpy; diffeqpy.install()" | |
julia -e 'using Pkg; Pkg.add(PackageSpec(name="ReactionMechanismSimulator",rev="main")); using ReactionMechanismSimulator' | |
python-jl rmg.py test/regression/RMS_constantVIdealGasReactor_superminimal/input.py |