Skip to content

Latest commit

 

History

History
56 lines (47 loc) · 2.38 KB

fork.md

File metadata and controls

56 lines (47 loc) · 2.38 KB

Fork the Repo

If you want to fork the repository, you have two options to let Travis-CI check your builds.

Create Pull Request

If you create a pull request, your build will be checked. This repository can then integrate the changes into the master branch. From there, releases will be issued, see deployment.

Configure Travis for your Build

You can configure Travis-CI to run your own build. Therefore, some changes need to be made to the .travis.yml file which will make it incompatible with the one running on niccokunzmann/mundraub-android. To keep other commits easily integratable between you and other repositories, I recommend commiting all changes to the .travis.yml in commits which do not change other files.

These changes need to be made:

  • In the env section, there are encrypted variables.
    secure: "Na ... Hw=" # TRANSIFEX_PASSWORD
    You will need to change them to your secrets as they only work on niccokunzmann/mundraub-android.
  • In the before_install Section, the two files need to be encrypted using
    travis encrypt-file -p <FILE> --key="$TRAVIS_FILE_KEY" --iv="$TRAVIS_FILE_IV"`
    and copied into the .travis folder.