Make sure configured user is properly set by Salt (bsc#1210994) #45
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |