File tree Expand file tree Collapse file tree 4 files changed +31
-30
lines changed
test/fixtures/cookbooks/test/recipes Expand file tree Collapse file tree 4 files changed +31
-30
lines changed Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+
3+ system_version = '1.0.1'
4+
5+ # Make sure that Vagarant user is on the box for dokken
6+ include_recipe 'test::dokken'
7+
8+ # System Install
9+ jlenv_system_install 'system'
10+
11+ # Install system wide Julia
12+ jlenv_julia system_version
13+
14+ # Set System global version
15+ jlenv_global system_version
16+
17+ # Uninstall Julia
18+ jlenv_julia system_version do
19+ jlenv_action 'uninstall'
20+ end
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- rbenv_script 'not-much' do
2- code 'rake nadda'
1+ # Make is Julia's build orchestration
2+ jlenv_script 'not-much' do
3+ code 'make nadda'
34end
Original file line number Diff line number Diff line change 1- # Install rbenv and makes it avilable to the selected user
2- version = '2.4 .1'
1+ # Install jlenv and makes it avilable to the selected user
2+ version = '1.0 .1'
33
44# Make sure that Vagarant user is on the box for dokken
55include_recipe 'test::dokken'
66
7- # Keeps the rbenv install upto date
8- rbenv_user_install 'vagrant'
7+ # Keeps the jlenv install upto date
8+ jlenv_user_install 'vagrant'
99
10- rbenv_plugin 'ruby -build' do
11- git_url 'https://github.com/rbenv/ruby -build.git'
10+ jlenv_plugin 'julia -build' do
11+ git_url 'https://github.com/jlenv/julia -build.git'
1212 user 'vagrant'
1313end
1414
15- rbenv_ruby '2.4.1 ' do
15+ jlenv_julia '1.0.4 ' do
1616 user 'vagrant'
1717end
1818
19- rbenv_global version do
19+ jlenv_global version do
2020 user 'vagrant'
2121end
You can’t perform that action at this time.
0 commit comments