-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
revise conda recipe and associated CI
asdf
- Loading branch information
1 parent
24284bc
commit 0b2ff2e
Showing
5 changed files
with
162 additions
and
110 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
# Install RMG | ||
make install | ||
|
||
# lazy "install" of everything in our 'external' folder. | ||
# most of which should probably be elsewhere | ||
cp -R ${SRC_DIR}/external ${SP_DIR} |
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
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 |
---|---|---|
@@ -1,58 +1,40 @@ | ||
name: Conda Build | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- stable | ||
jobs: | ||
build-linux: | ||
runs-on: ubuntu-latest | ||
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@v2 | ||
- uses: conda-incubator/setup-miniconda@v2 | ||
- uses: actions/checkout@v4 | ||
- name: Setup Conda with Python 3.7 | ||
uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
environment-file: environment.yml | ||
python-version: 3.7 | ||
activate-environment: rmg_env | ||
- name: Conda info | ||
auto-update-conda: false | ||
conda-solver: libmamba | ||
auto-activate-base: true | ||
activate-environment: "" | ||
- name: Install Build Tools | ||
run: conda install anaconda-client conda-build | ||
- name: Configure Auto-Upload | ||
if: github.ref == 'refs/heads/stable' | ||
run: | | ||
conda info | ||
conda list | ||
conda config --set anaconda_upload yes | ||
- name: Build Binary | ||
env: | ||
CONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }} | ||
CONDA_TOKEN: "need_to_add_this_secret" # ${{ secrets.ANACONDA_TOKEN }} | ||
run: | | ||
conda install -y conda-build | ||
conda install -y anaconda-client | ||
conda config --add channels rmg | ||
conda config --set anaconda_upload yes | ||
conda config --add channels cantera | ||
conda config --add channels conda-forge | ||
conda build --token $CONDA_TOKEN --user rmg .conda | ||
build-osx: | ||
runs-on: macos-latest | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
environment-file: environment.yml | ||
python-version: 3.7 | ||
activate-environment: rmg_env | ||
- name: Conda info | ||
run: | | ||
conda info | ||
conda list | ||
- name: Build Binary | ||
env: | ||
CONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }} | ||
run: | | ||
conda install -y conda-build | ||
conda install -y anaconda-client | ||
conda config --add channels rmg | ||
conda config --set anaconda_upload yes | ||
xcrun --show-sdk-path | ||
conda build --token $CONDA_TOKEN --user rmg .conda |
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