-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.silo.yml
More file actions
35 lines (29 loc) · 815 Bytes
/
.silo.yml
File metadata and controls
35 lines (29 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# silo project configuration
# https://github.com/gschlager/silo#project-configuration
image: fedora/43
setup:
- sudo dnf update
- sudo dnf copr enable -y gschlager/ruby
- sudo dnf install -y gcc make libyaml-devel java-latest-openjdk-headless ruby-install
- ruby-install jruby
- curl -LsSf https://rv.dev/install | sh
- . "$HOME/.cargo/env"
- rv ruby install 3.3
- rv ruby install 3.4
- rv ruby install 4.0
- rv run bundle install
- rv run bundle exec lefthook install
- echo '. "$HOME/.cargo/env"' >> ~/.zshenv
- echo 'eval "$(rv shell init zsh)"' >> ~/.zshenv
- echo 'eval "$(rv shell completions zsh)"' >> ~/.zshrc
sync:
- bundle install
update:
- sudo dnf update -y
- rv selfupdate
ports:
- 4567:4567
daemons:
playground:
cmd: bin/playground
autostart: true