File tree 1 file changed +15
-1
lines changed
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.
50
50
You can copy one of the definitions from the ` auto ` section to the ` pr ` or ` try ` sections.
51
51
For example, the ` x86_64-msvc ` job is responsible for running the 64-bit MSVC tests.
52
52
You 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
+ ` ` `
54
68
55
69
Then, you can commit the file and push to GitHub. GitHub Actions should launch the tests.
56
70
You can’t perform that action at this time.
0 commit comments