Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mfherbst committed May 24, 2023
1 parent 22e8b74 commit 99dde8e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ExportPluto.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@ jobs:
with:
version: "1" # This will automatically pick the latest Julia version

# Stuff we need to get the ACEsuit working
- name: Install ASE
run: |
julia -e '
using Pkg
Pkg.add("PyCall")
using PyCall
run(`$(PyCall.python) -m pip install ase`)
'
- name: Cache Julia artifacts & such
uses: julia-actions/cache@v1
with:
Expand All @@ -48,16 +58,6 @@ jobs:
- name: Add ACEsuit registry
run: julia -e 'using Pkg; Pkg.Registry.add(RegistrySpec(url="https://github.com/ACEsuit/ACEregistry"))'

# Stuff we need to get the ACEsuit working
- name: Install ASE
run: |
julia -e '
using Pkg
Pkg.add("PyCall")
using PyCall
run(`$(PyCall.python) -m pip install ase`)
'
- name: Run & export Pluto notebooks
run: |
DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24' julia -e 'using Pkg
Expand Down

0 comments on commit 99dde8e

Please sign in to comment.