Skip to main content

Posts

Showing posts from April, 2018

Test automation tutorial with Selenium WebDriver part 4: Continuous Integration

Continuous Integration Setup Git server Install Java if not installed - https://java.com/en/download/ Install Git server Download http://dl.bintray.com/gitblit/releases/gitblit-1.8.0.zip and unpack it  Open new cmd.exe window Go to unpacked folder:     example: cd C:\Users\IEUser\Downloads\gitblit-1.8.0 Run command:     java -jar gitblit.jar --httpPort 80  Now in your browser open ' http://localhost ' you should see running Git server: Create git remote repository Login as admin(username: ' admin ', password: ' admin ') Click ' repositories ' Click ' new repository ' Fill in repository data name: osm-testing Access Policy: Restrict Push (Authenticated... Click ' create ' Now new repository should be created: Now you need to copy repository URL - click on 'URL' and copy line starting with 'http' example: http://admin@localhost/r/osm-testing.git  Push changes to Git server  Open 'Git B