Skip to content

Commit

Permalink
syntax error in CI.yml, delete unused action, remove blank in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonBurns committed Apr 12, 2023
1 parent 15124a8 commit dc73d76
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 108 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,16 @@ jobs:
run: make test-database

# RMS installation and linking to Julia
# Allow these installs to 'fail' (as they do in RMG-Tests) with the command || True trick
- name: Install and link Julia dependencies
run: |
# Allow these installs to 'fail' (as they do in RMG-Tests) with the command || True trick
python -c "import julia;\
julia.install();\
import diffeqpy;\
diffeqpy.install()" || true
julia -e 'using Pkg;\
Pkg.add(PackageSpec(name="ReactionMechanismSimulator",rev="main"));\
using ReactionMechanismSimulator' || true
python -c "import julia; " \
"julia.install(); " \
"import diffeqpy; " \
"diffeqpy.install()" || true
julia -e 'using Pkg; ' \
'Pkg.add(PackageSpec(name="ReactionMechanismSimulator",rev="main")); ' \
'using ReactionMechanismSimulator' || true
ln -sfn $(which python-jl) $(which python)
# Attempt to install MOPAC
Expand Down
99 changes: 0 additions & 99 deletions .github/workflows/generate_regression_baseline.yml

This file was deleted.

1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ eg1: all
coverage run rmg.py -p testing/eg1/input.py
coverage report
coverage html

eg2: all
mkdir -p testing/eg2
rm -rf testing/eg2/*
Expand Down

0 comments on commit dc73d76

Please sign in to comment.