-
Notifications
You must be signed in to change notification settings - Fork 52
39 lines (37 loc) · 1.15 KB
/
functional-opensuse-leap.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
name: functional-opensuse-leap
on:
push:
branches:
- openSUSE/release/3006.0
pull_request:
branches:
- openSUSE/release/3006.0
workflow_dispatch:
jobs:
functional-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Salt
uses: actions/checkout@v2
with:
path: salt
- name: Checkout Salt Toaster
uses: actions/checkout@v2
with:
repository: openSUSE/salt-toaster
path: salt-toaster
ref: 3006
- name: Functional tests
env:
# The "ghcr.io/opensuse/salt-toaster-leap15.4-devel" package is currently private.
# Uncomment DOCKER_IMAGE once the image is public.
#
# https://github.com/orgs/openSUSE/packages?repo_name=salt-toaster
#
# DOCKER_IMAGE: "ghcr.io/opensuse/salt-toaster-leap15.4-devel"
DISTRO: "leap15.4"
FLAVOR: "devel"
SALT_REPO: "${{ github.workspace }}/salt"
PYTEST_FLAGS: "--run-slow --core-tests --run-destructive --ssh-tests --run-expensive -vvvv"
working-directory: ./salt-toaster
run: make saltstack.functional