Browse Source

Added info on how to config CIs for forks.

Andy Li 10 years ago
parent
commit
10792944cd
1 changed files with 43 additions and 3 deletions
  1. 43 3
      tests/README.md

+ 43 - 3
tests/README.md

@@ -2,11 +2,51 @@
 
 We have a number of test suites, which are placed in their own folders in this directory.
 
-"RunCi.hx" is the script used by our CIs to run all the test suites. It is possible to run it in local machines too:
+"RunCi.hx" is the script used by our CIs to run all the test suites. It is possible to configure CIs for your own fork of Haxe on Github using the instructions as follows.
+
+### TravisCI
+
+TravisCI provides Linux and Mac builds. However, for forks, it only provides Linux builds unless [requested manually](http://docs.travis-ci.com/user/multi-os/).
+
+To set up TravisCI:
+
+ 1. Head to TravisCI, go to the [profile page](https://travis-ci.org/profile).
+ 2. Turn on the switch of your fork. If you couldn't find the repo, try the *Sync* button on the top to refresh the list.
+ 3. If you want to enable browser testing for the JS target, follow the instructions in the SauceLabs section. If not, go to the next step.
+ 4. Push to the repo to trigger a new build. The build result should be available at `https://travis-ci.org/<user_name>/haxe`.
+
+### AppVeyor
+
+AppVeyor provides Windows builds.
+
+To set up AppVeyor:
+
+ 1. Head to AppVeyor, [add a new project](https://ci.appveyor.com/projects/new).
+ 2. Select the forked repo under your account.
+ 3. The build worker provided by the AppVeyor free plan is very slow. In order to avoid reaching the 40 min build time limit for each build, it is recommanded to test only the targets you're interested. Go the *settings* page of the new project, select *Environment*. Click *Add variable* under *Environment variables*. Enter `TEST` in the *name* field, and a comma-seperated list of targets (e.g. `neko,macro`) in the *value* field.
+ 4. Push to the repo to trigger a new build. The build result should be available at `https://ci.appveyor.com/project/<user_name>/haxe`.
+
+### SauceLabs
+
+SauceLabs provides browser testings. We use TravisCI to drive the test, so you should have TravisCI configured.
+
+To set up SauceLabs:
+
+ 1. Head to the project page of your fork at `https://travis-ci.org/<user_name>/haxe`
+ 2. Select *Settings* -> *Settings*.
+ 3. Select the *Environment Variables* tab.
+ 4. Select *Add a new variable* for the following pairs, keeping the switch off for *Display value in build logs*.
+    * name: `SAUCE_USERNAME`, value: your SauceLabs account name
+    * name: `SAUCE_ACCESS_KEY`, value: your SauceLabs access key, which can be found at https://saucelabs.com/account
+ 5. Push to the repo to trigger a new TravisCI build. SauceLabs test results should be available in the JS build log.
+
+### Local testing
+
+It is possible to run it in local machines too:
 
  1. Change to this directory.
  2. Compile the script: `haxe RunCi.hxml`.
- 3. Define the test target by `export TEST=$TARGET` (or `set "TEST=$TARGET"` on Windows), where `$TARGET` should be one of `macro`, `neko`, `js`, `php`, `cpp`, `flash9`, `as3`, `java`, `cs`, `python`, or `third-party`. However, `flash9`, `as3`, and `third-party` are not likely to work on local machines (TODO).
+ 3. Define the test target by `export TEST=$TARGET` (or `set "TEST=$TARGET"` on Windows), where `$TARGET` should be a comma-seperated list of targets, e.g. `neko,macro`. Possible targets are `macro`, `neko`, `js`, `php`, `cpp`, `flash9`, `as3`, `java`, `cs`, `python`, and `third-party`. However, `flash9`, `as3`, and `third-party` are not likely to work on local machines (TODO).
  4. Run it: `neko RunCi.n`.
 
 Note that the script will try to look for test dependencies and install them if they are not found. Look at the `getXXXDependencies` functions for the details.
@@ -29,4 +69,4 @@ The "sys" folder contains tests for the system targets. It can also be run separ
 Assuming all test dependencies has been installed, we compile and run the sys tests for all targets at once as follows:
 
  1. Change to the "sys" directory.
- 2. If you're on Windows, comment out the relevant lines in "run.hxml". `haxe run.hxml`.
+ 2. If you're on Windows, comment out the relevant lines in "run.hxml". `haxe run.hxml`.