-
Notifications
You must be signed in to change notification settings - Fork 70
31 lines (30 loc) · 1012 Bytes
/
ubuntu.yml
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
name: ubuntu
on:
push:
branches:
- master
pull_request:
jobs:
ubuntu:
runs-on: ${{ matrix.platforms.os }}
strategy:
fail-fast: false
matrix:
platforms: [
{ os: "ubuntu-20.04", errbit: "True" },
{ os: "ubuntu-22.04", errbit: "False"},
{ os: "ubuntu-24.04", errbit: "False"}
]
rails_env: [staging, production]
steps:
- uses: actions/checkout@v4
- name: Update system packages
run: sudo apt-get update -y
- name: Install needed packages
run: sudo apt-get install -y openssh-server ansible
- name: Create hosts file
run: echo "localhost ansible_connection=local ansible_user=root" > hosts
- name: Generate dummy SSH key
run: ssh-keygen -t rsa -N "" -f ~/.ssh/id_rsa
- name: Run CONSUL DEMOCRACY installer
run: ansible-playbook consul.yml -i hosts --extra-vars "env=${{ matrix.rails_env }} domain=localhost errbit=${{ matrix.platforms.errbit }}"