blob: 544b5b4567ae515e787a88dd425054d1868fae98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
test:
image: debian:bookworm
script:
- apt-get update -y
- apt-get install -y build-essential chromium curl libffi-dev zlib1g-dev libyaml-dev
- curl https://mise.run | sh
- ~/.local/bin/mise install
- echo 'eval "$(~/.local/bin/mise activate bash)"' >> ~/.bashrc
- source ~/.bashrc
- echo '127.0.0.1 api.example.com' >> /etc/hosts
- echo '127.0.0.1 idp.example.com' >> /etc/hosts
- echo '127.0.0.1 ui.example.com' >> /etc/hosts
- gem update --system
- gem install bundler
- make
|