Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions cicd/jenkins/kitchen-freebsd121-py3
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
@Library('salt@master-1.7') _

runTestSuite(
ami_image_id: 'ami-097c7303c2c839327',
concurrent_builds: 1,
distro_name: 'freebsd',
distro_version: '121',
env: env,
golden_images_branch: 'master',
jenkins_slave_label: 'kitchen-slave',
nox_env_name: 'runtests-zeromq',
nox_passthrough_opts: '--ssh-tests',
python_version: 'py3',
testrun_timeout: 6,
use_spot_instances: true)

// vim: ft=groovy
20 changes: 20 additions & 0 deletions cicd/jenkins/kitchen-freebsd121-py3-pytest
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
@Library('salt@master-1.7') _

runTestSuite(
ami_image_id: 'ami-097c7303c2c839327',
concurrent_builds: 2,
distro_name: 'freebsd',
distro_version: '121',
env: env,
golden_images_branch: 'master',
jenkins_slave_label: 'kitchen-slave',
nox_env_name: 'pytest-zeromq',
nox_passthrough_opts: '--ssh-tests',
python_version: 'py3',
//splits: ['unit', 'integration', 'multimaster'],
testrun_timeout: 6,
use_spot_instances: true,
//fast_slow_staged_testrun: true
)

// vim: ft=groovy
2 changes: 1 addition & 1 deletion tests/integration/files/file/base/issue-30161.sls
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% if grains['os'] == 'Windows' %}
{% set test_false = 'cmd.exe /c exit 1' %}
{% set test_true = 'cmd.exe /c exit 0' %}
{% elif grains['os'] == 'MacOS' %}
{% elif grains['os'] == 'MacOS' or grains['os'] == 'FreeBSD' %}
{% set test_false = '/usr/bin/false' %}
{% set test_true = '/usr/bin/true' %}
{% else %}
Expand Down