-
Notifications
You must be signed in to change notification settings - Fork 32
64 lines (59 loc) · 1.75 KB
/
ruby_tests.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Ruby tests
on:
push:
branches: [foreman_3_9]
paths-ignore:
- '**/.github/**/*'
pull_request:
branches: [foreman_3_9]
paths-ignore:
- '**/.github/**/*'
defaults:
run:
working-directory: /projects/foreman
jobs:
test_ruby:
defaults:
run:
working-directory: /projects/foreman
env:
PGHOST: postgres
PGUSER: foreman
PGPASS: foreman
RAILS_ENV: test
host: postgres
WORKDIR: /projects/foreman
BUNDLE_PATH: vendor/bundle
GIT_COMMITTER_NAME: "gh_actions"
GIT_COMMITTER_EMAIL: "gh_actions@rh_cloud.foreman"
runs-on: ubuntu-latest
container:
image: ghcr.io/theforeman/tfm_plugin_test:foreman_3_7
services:
postgres:
image: quay.io/jomitsch/postgres-with-evr
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
POSTGRES_USER: foreman
POSTGRES_PASSWORD: foreman
steps:
- name: Checkout foreman_rh_cloud repo
uses: actions/checkout@v2
with:
path: ${{ github.workspace }}/projects/foreman_rh_cloud
- name: Fix git config
run: |
rm -rf /projects/foreman_rh_cloud/{app,test,lib}
cp -Rf $GITHUB_WORKSPACE/projects/foreman_rh_cloud /projects/
/usr/bin/entrypoint.sh pnpm config set store-dir /root/.local/share/pnpm/store/v3
cd /projects/foreman
/usr/bin/entrypoint.sh git config --global user.name $GIT_COMMITTER_NAME
/usr/bin/entrypoint.sh git config --global user.email $GIT_COMMITTER_EMAIL
- name: Run tests suite
run: |
cd /projects/foreman
/usr/bin/entrypoint.sh /usr/bin/run_tests.sh