diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-06-25 16:47:29 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-06-25 16:47:29 -0300 |
commit | dc30332cf167feafe7b123e2b75d57e03a68e50d (patch) | |
tree | ceff8f79eeed205cdaa0ef8bf3ac407f57ddd2aa | |
parent | c5bc7240438be03fd0181be39a635cc06557324f (diff) | |
download | plus-dc30332cf167feafe7b123e2b75d57e03a68e50d.tar.gz plus-dc30332cf167feafe7b123e2b75d57e03a68e50d.tar.bz2 plus-dc30332cf167feafe7b123e2b75d57e03a68e50d.tar.xz plus-dc30332cf167feafe7b123e2b75d57e03a68e50d.zip |
Be slightly more smart when running mplintjesusalva/mplint
Inspired by https://stackoverflow.com/questions/918886/how-do-i-split-a-string-on-a-delimiter-in-bash
why tf were we recompiling mplint three times, anyway.
-rw-r--r-- | .gitlab-ci.yml | 4 | ||||
-rwxr-xr-x | tools/ci/jobs/mplint.sh | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 544257b6c..029fd0c84 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -325,9 +325,7 @@ gcc-8_unittestsbin: mplint: stage: lint script: - - ./tools/ci/jobs/mplint.sh src - - ./tools/ci/jobs/mplint.sh po - - ./tools/ci/jobs/mplint.sh data + - ./tools/ci/jobs/mplint.sh src po data <<: *job-push variables: PACKAGES: gcc g++ git diff --git a/tools/ci/jobs/mplint.sh b/tools/ci/jobs/mplint.sh index d3508759f..c1e817479 100755 --- a/tools/ci/jobs/mplint.sh +++ b/tools/ci/jobs/mplint.sh @@ -25,7 +25,11 @@ run_configure_simple run_make cd .. echo " " >config.h -run_mplint $* +tasks=$(echo $* | tr " " "\n") +for task in $tasks +do + run_mplint $task +done source ./tools/ci/scripts/exit.sh |