
Security News
Rspack Introduces Rslint, a TypeScript-First Linter Written in Go
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
Paraduct (parallel + parameterize + product) is matrix test runner
Add this line to your application's Gemfile:
gem 'paraduct'
And then execute:
$ bundle
Or install it yourself as:
$ gem install paraduct
$ paraduct --help
Commands:
paraduct generate # generate .paraduct.yml
paraduct help [COMMAND] # Describe available commands or one specific command
paraduct test # run matrix test
$ paraduct generate
create .paraduct.yml
create .paraduct_rsync_exclude.txt
$ vi .paraduct.yml
$ vi .paraduct_rsync_exclude.txt
$ paraduct test
script: |-
echo "[START] NAME1=${NAME1}, NAME2=${NAME2}"
after_script: |-
echo "[END] NAME1=${NAME1}, NAME2=${NAME2}"
work_dir: tmp/paraduct_workspace
variables:
NAME1:
- value1a
- value1b
NAME2:
- value2a
- value2b
max_threads: 4
rsync_option:
exclude_from: .paraduct_rsync_exclude.txt
exclude:
- NAME1: value1a
NAME2: value2b
script to run
script to run after both script
successful and script
failure
diretory to run
work_dir/$PARADUCT_JOB_NAME
work_dir
is empty, own job is run under current directory.
Parameters to be combined
$PARADUCT_JOB_NAME
is generated with variables$PARADUCT_JOB_ID | NAME1 | NAME2 | $PARADUCT_JOB_NAME | current directory where the test is performed |
---|---|---|---|---|
1 | value1a | value2a | NAME1_value1a_NAME2_value2a | tmp/paraduct_workspace/NAME1_value1a_NAME2_value2a |
2 | value1a | value2b | NAME1_value1a_NAME2_value2b | tmp/paraduct_workspace/NAME1_value1a_NAME2_value2b |
3 | value1b | value2a | NAME1_value1b_NAME2_value2a | tmp/paraduct_workspace/NAME1_value1b_NAME2_value2a |
4 | value1b | value2b | NAME1_value1b_NAME2_value2b | tmp/paraduct_workspace/NAME1_value1b_NAME2_value2b |
maximum concurrent execution number of jobs
support only exclude-from
exclude pattern from product variables
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that paraduct demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
Security News
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.