Skip to content

Commit

Permalink
@fixup Add a CI job to retag MRI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andrykonchin committed Oct 17, 2024
1 parent 9db9994 commit 681a9ab
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ci.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -396,11 +396,15 @@ local part_definitions = {

retag_mri_tests: {
run+: jt(["retag", "test/mri/tests/**/*test*.rb"]) + [
["set-export", "DATE", ["date", "+%F"]],
["set-export", "TRUFFLERUBY_BRANCH", "retag-mri-tests-$DATE"],
["git", "checkout", "-b", "$TRUFFLERUBY_BRANCH"],
["git", "config", "--local", "user.email", "[email protected]"],
["git", "config", "--local", "user.name", "Retag MRI tests"],
["git", "commit", "-a", "-m", "Retag MRI tests"],
["git", "push"],
]
["git", "remote", "-v"],
["git", "push", "-f", "origin", "HEAD"],
],
},
},

Expand Down

0 comments on commit 681a9ab

Please sign in to comment.