diff options
author | Naoto Ono <[email protected]> | 2025-07-23 11:18:11 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2025-07-23 11:18:11 +0900 |
commit | fbaad485db4259497aeac93a296b25432c198fdd (patch) | |
tree | 18cc8dc0b7f5a1717091b9536b54e51e897b0d17 | |
parent | 61b5d3cf89d9c4b9390eee1e3b3b458c4ad02c31 (diff) |
I've enabled the [Predictive Test Selection](https://www.launchableinc.com/docs/features/predictive-test-selection/) feature, which let machine-learning model selects the appropriate tests to reduce CI execution time in https://github.com/ruby/ruby/pull/12617.
However, I noticed that there are some problems for enabling PTS in Ruby CI after several experiments. Until fixing the problem, I'll disable this feature by removing `launchable subset` command.
-rw-r--r-- | .github/actions/launchable/setup/action.yml | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/.github/actions/launchable/setup/action.yml b/.github/actions/launchable/setup/action.yml index 3a939452a3..54f1abd97a 100644 --- a/.github/actions/launchable/setup/action.yml +++ b/.github/actions/launchable/setup/action.yml @@ -182,12 +182,6 @@ runs: --flavor workflow="${{ github.workflow }}" \ --test-suite ${suite} \ ) - launchable subset \ - --get-tests-from-previous-sessions \ - --non-blocking \ - --target 90% \ - --session "${session}" \ - raw > /dev/null echo "${target}_session=${session}" >> $GITHUB_OUTPUT } |