File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,21 @@ it is merged into the main branch.
5050You can copy one of the definitions from the ` auto ` section to the ` pr ` or ` try ` sections.
5151For example, the ` x86_64-msvc ` job is responsible for running the 64-bit MSVC tests.
5252You can copy it to the ` pr ` section to cause it to be executed after a commit is pushed to your
53- PR.
53+ PR, like this:
54+
55+ ``` yaml
56+ pr :
57+ ...
58+ - image : x86_64-gnu-tools
59+ << : *job-linux-16c
60+ # this item was copied from the `auto` section
61+ # vvvvvvvvvvvvvvvvvv
62+ - image : x86_64-msvc
63+ env :
64+ RUST_CONFIGURE_ARGS : --build=x86_64-pc-windows-msvc --enable-profiler
65+ SCRIPT : make ci-msvc
66+ << : *job-windows-8c
67+ ` ` `
5468
5569Then, you can commit the file and push to GitHub. GitHub Actions should launch the tests.
5670
You can’t perform that action at this time.
0 commit comments