Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moving from Travis to GitHub Actions #921

Closed
ErikSchierboom opened this issue Oct 15, 2020 · 5 comments · Fixed by #930
Closed

Moving from Travis to GitHub Actions #921

ErikSchierboom opened this issue Oct 15, 2020 · 5 comments · Fixed by #930

Comments

@ErikSchierboom
Copy link
Member

Hello 🙂

Over the last few months we've been transferring all our CI from Travis to GitHub Actions (GHA). We've found that GHA are easier to work with, more reliable, and much much faster.

Based on our success with GHA and increasing intermittent failures on Travis, we have now decided to try and remove Travis from Exercism's org altogether and shift everything to GHA. This issue acts as a call to action if your track is still using Travis.

For most CI checks this should be a transposing from Travis' syntax to GHA syntax, and hopefully quite straightforward (see this PR for an example). However, if you do encounter any issues doing this, please ask on Slack where lots of us now have experience with GHA, or post a comment here and I'll tag relevant people. This would also make a good Hacktoberfest issue for anyone interested in making their first contribution 🙂

If you've already switched this track to GHA, please feel free to close this issue and ignore it.

Thanks!

@ErikSchierboom
Copy link
Member Author

ErikSchierboom commented Oct 22, 2020

We now have a really nice document and some starting workflows that you can use to help switch to GitHub Actions: https://github.com/exercism/problem-specifications/tree/master/workflows#workflow-templates

@petertseng
Copy link
Member

petertseng commented Nov 15, 2020

To work on this issue, what you're going to want to do is to move each of the checks in https://github.com/exercism/haskell/blob/master/.travis.yml over, and I recommend doing them piecemeal. For example here is one that will just do configlet lint

name: Tests
on:
  pull_request:
  push:
    branches:
    - YOURBRANCHNAME

jobs:
  track-config:
    name: Check track configuration
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Fetch
        run: bin/fetch-configlet
      - name: Lint
        run: bin/configlet lint .

(Notice where it says YOURBRANCHNAME - use your branch name there so GHA runs on your branch on your repo)

The checks to be moved are as follows. If you have a branch with that particular check moved over, check the box add a link to that branch if you have edit access, otherwise post a comment linking to that branch. When they're all done we'll combine them all.

@petertseng
Copy link
Member

petertseng commented Nov 15, 2020

Don't forget to change the badge in https://github.com/exercism/haskell/blob/master/README.md. New line should be:

[![Tests](https://github.com/exercism/haskell/workflows/Tests/badge.svg?branch=master)](https://github.com/exercism/haskell/actions?query=workflow%3ATests+branch%3Amaster)

The string Tests will match the name in the YAML file; since I named it Tests, that's what goes there.

petertseng added a commit that referenced this issue Nov 18, 2020
Closes #921

The Exercism organisation is moving to GitHub Actions.
It runs faster.
@petertseng
Copy link
Member

Now that all our tests were successfully moved GitHub Actions, there's one thing we now need @iHiD 's help with...

Could you change the required checks for our repo? Travis should no longer be required of course.

We'd like "Check exercises (lts-from-exercises)" and "Check track configuration" to be required, please.

(and not "Check exercises (nightly)")

@iHiD
Copy link
Member

iHiD commented Nov 18, 2020

All done. Thanks @petertseng!

petertseng added a commit that referenced this issue Nov 20, 2020
We've done all of the following:

* moved from Travis to GitHub Actions in
  #930
* tested that everything works on GitHub Actions in
  #930
* requested and received confirmation that Travis CI is no longer a
  required check, and GitHub Actions is required, in
  #921

We're ready to remove the Travis CI config (which at this point is just
running /bin/true anyway so not doing anything useful)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants