If you want to use koding.io as wordpress plugin developer with tests (executed by phpunit) you can follow this guide. This guide illustrates how the test environment is set up on koding.io. You should already familiar with wordpress & testing to understand the tutorial. Read more →
Tests
Problems Solved for Setting Up Jenkins
You must set the %JAVA_HOME% and Path environment variables for jenkins. Otherwise you should get errors like:
1 2 3 4 | $ "C:\Program Files (x86)\Android\sdk/tools/android.bat" list target Der Befehl "C:\Windows\system32\java.exe" ist entweder falsch geschrieben oder konnte nicht gefunden werden. Ungültiger Pfad Das System kann den angegebenen Pfad nicht finden. |
To do so follow this steps: Create a %JAVA_HOME% var with path to the Java jdk/jre (without /bin) Add %JAVA_HOME% to the Path var. Extend the string with \bin now. Check the result by enter javac in the cmd. If something java… Read more →