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

Create GH Actions workflow for build&test of Go client #2318

Merged
merged 10 commits into from
Feb 10, 2021

Conversation

michalinacienciala
Copy link
Contributor

As described in RFC-18, there is a need for a refactorization of Keep
and tBTC release processes in order to reduce human involvment and make
the processes faster and less error prone. A part of this task is
migration from CircleCI jobs to GitHub Actions. This commit creates a
GitHub Action workfow for building and testing Go client.

@github-actions

This comment has been minimized.

As described in RFC-18, there is a need for a refactorization of Keep
and tBTC release processes in order to reduce human involvment and make
the processes faster and less error prone. A part of this task is
migration from CircleCI jobs to GitHub Actions. This commit creates a
GitHub Action workfow for building and testing Go client.
@michalinacienciala michalinacienciala force-pushed the ci-jobs-to-github-actions-migration branch from 804446e to 8cc2e7e Compare February 8, 2021 10:42
@github-actions

This comment has been minimized.

@github-actions

This comment has been minimized.

.github/workflows/client.yml Outdated Show resolved Hide resolved
.github/workflows/client.yml Outdated Show resolved Hide resolved
In order to improve workflow readability, notation of docker commands
has been modified (long commands have been split to multiple lines).
Also a way to access file containing unit tests results has been
simplified (EnricoMi/[email protected] action
requires access to file via a relative path).
@github-actions

This comment has been minimized.

1 similar comment
@github-actions

This comment has been minimized.

Previous conditions for workflow kick-off [push, pull-request] were
causing start of two simultaneous workflows when new commit was pushed
to an already open pull request. After the change such situation should
start only one workflow.
@michalinacienciala michalinacienciala force-pushed the ci-jobs-to-github-actions-migration branch from 1bbd734 to e59dfd9 Compare February 8, 2021 16:15
@github-actions

This comment has been minimized.

@github-actions

This comment has been minimized.

@michalinacienciala michalinacienciala force-pushed the ci-jobs-to-github-actions-migration branch from b329049 to 3a35f1e Compare February 9, 2021 08:57
@github-actions

This comment has been minimized.

Each workflow should be malually triggerable and should trigger its
downstream dependencies. This commit adresses the first part of that
statement. Triggering of downstream dependencies is not yet developed,
as downstream workflows aren't yet created.
@michalinacienciala michalinacienciala force-pushed the ci-jobs-to-github-actions-migration branch from 3a35f1e to 5affb78 Compare February 9, 2021 09:23
@pdyraga
Copy link
Member

pdyraga commented Feb 9, 2021

What do you think - and is it possible - to disable the bot to post a new comment with test results after each push? IMO it is cluttering communication and all the most recent test results are available from the checks list.

@github-actions
Copy link

github-actions bot commented Feb 9, 2021

Go Test Results

0 files  0 suites   0s ⏱️
0 tests 0 ✔️ 0 💤 0 ❌

Results for commit 5affb78.

In order not to flood the PRs with lot of comments, publishing of test
results to PR comments has been turned off. Results can be sill viewed
by going to Checks tab.
Commit also includes changes in the way test results are accessed (now
GITHUB_WORKSPACE env variable is utilized).
@michalinacienciala michalinacienciala force-pushed the ci-jobs-to-github-actions-migration branch from f1a1790 to 372333d Compare February 9, 2021 11:09
.github/workflows/client.yml Outdated Show resolved Hide resolved
michalinacienciala and others added 2 commits February 9, 2021 16:22
Name of the step was incorrect - we do not enter the directory as part of the step.

Co-authored-by: Jakub Nowakowski <[email protected]>
Change introduced to deliberatly make the tests fail. Will be reverted
soon.
@michalinacienciala michalinacienciala force-pushed the ci-jobs-to-github-actions-migration branch from 376b63b to c41fb94 Compare February 9, 2021 16:50
Copy link
Member

@nkuba nkuba left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just one tiny suggestion. Overall it looks very good to me.

--tag keep-client .
- name: Create test results directory
run: |
mkdir -p $GITHUB_WORKSPACE/test-results/
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we could simplify it and do just mkdir test-results? In the next step, we've got to use $GITHUB_WORKSPACE to define the volume as a path, but I believe we don't need it here.

Command run in the step creating test results directory has been
simplified. There is no need to use GITHUB_WORKSPACE env variable here
as commands executed via 'run' keyword are executed in that location by
default.
@michalinacienciala
Copy link
Contributor Author

I've noticed one problem with EnricoMi/publish-unit-test-result-action@v1 action used for publishing of tests result - when a commit causes two separate workflows to trigger in parallel, the test results in the form of a 'check' are sometimes getting attached to incorrect workflow (i.e. to the one that did not use the EnricoMi/publish-unit-test-result-action@v1 action).
This is a bug that creators of the action are aware of (EnricoMi/publish-unit-test-result-action#12). I subscribed to that ticket, so I should get notified once this is fixed.

Added comment highlighting piece of CircleCI config code for which
a GitHub Actions workflow has been already created (as part of work on
RFC-18 that requires migration of build processes from CircleCI to
GitHub Actions).
@nkuba nkuba merged commit 4bfa7a6 into master Feb 10, 2021
@nkuba nkuba deleted the ci-jobs-to-github-actions-migration branch February 10, 2021 13:59
on:
push:
branches:
- master
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One thing that may be worth considering here, if we're continuing to run the Circle build, is to change this filter to run on certain branches (e.g. rfc-18/*) and change Circle to not run on that filter. This effectively gives you a branch namespace to use for the work.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Implemented in #2329

steps:
- uses: actions/checkout@v1
- uses: satackey/[email protected]
continue-on-error: true # ignore the failure of a step and avoid terminating the job
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll flag that the comment here mostly seems to be repeating what the flag already communicates (unlike if: always() which isn't as obvious).

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right. I'm not changing it though, as this fragment of code will be removed once #2331 gets merged to master.

github_token: ${{ secrets.GITHUB_TOKEN }}
files: ./test-results/unit-tests.xml
check_name: Go Test Results # name under which test results will be presented in GitHub (optional)
comment_on_pr: false # turns off commenting on Pull Requests
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If things are working correctly, I believe the check should already be bubbling the important parts of this information up, including line annotations, e.g. like https://github.com/keep-network/keep-ecdsa/actions/runs/555260607 . I don't think we need the junit intermediary here, see https://github.com/actions/toolkit/blob/master/docs/commands.md#problem-matchers and the setup-go action's problem matcher at https://github.com/actions/setup-go/blob/main/matchers.json .

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(Of note: we may want to add our own matcher that works with our go-to test output.)

@Shadowfiend
Copy link
Contributor

Re: temporary commits to test failures: when reasonable, this is a great place to use reset + force-push to clear the commit away completely while the PR is still in draft, rather than clutter history with a test + revert. Another option is to have a separate branch for testing that runs parallel to your primary.

It's also imperfect, but worth looking at https://github.com/nektos/act, which provides limited support for running GitHub Actions locally.

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 this pull request may close these issues.

4 participants