59 questions
2
votes
3
answers
5k
views
Where does github actions stores the log files?
On my github action, it logged the following:
The full lint text report is located at:
/home/runner/work/honk/honk/app/build/intermediates/lint_intermediate_text_report/debug/lint-results-debug.txt
...
0
votes
1
answer
164
views
github-actions: a multi-line output from a previous step with 'uses' in a next step of a workflow
I do not understand, how to collect all of the output from previous step that implemented as uses to public it as a PR comment in the next step of the workflow.
There are many answers about collecting ...
0
votes
1
answer
1k
views
Github Actions worklfow logs are not expandable anymore
Out of the blue, I cannot see the logs for my github action workflow job steps, I was able to view these before but today without any changes, I can't expand and see the logs for the steps of a job. ...
3
votes
2
answers
2k
views
Use `-skipMacroValidation` for xcodebuild command when using an external package that includes macros
My GitHub CI was failing with a xcodebuild when I included a swift package that contains some macros. The build with xcodebuild was simply telling me xcodebuild: error: Failed writing xctestrun file: ...
1
vote
0
answers
258
views
Codecov on github: why is Codecov failing?
Context:
I'm dipping my toe into GitHub's lovely CI/CD facility and having a bit of difficulty.
https://github.com/rdpoor/basic-cicd is a super-simple repo designed to run unit tests and coverage ...
5
votes
1
answer
1k
views
PackageReference to project in the same Solution/git repository
At the moment I'm trying to setup a solution with a implementations class library and an abstractions project. I want to have both packages on nuget.org.
Normally when you're just using ...
0
votes
1
answer
200
views
Rationale behing using Lighthouse as github CI
I am trying to understand how running lighthouse as CI helps me. What I understood is on every PR lighthouse will run on my application that runs on a localhost. But my end users are using the prod ...
0
votes
0
answers
167
views
How can I make sure a Github Workflow can be used by only selected repositories/workflows in my Github Organization?
I've created 2 workflows, one is caller workflow A in repository A and other is called workflow B in repository B.
Both the repositories are part of Github Org OrgName.
Workflow B in repository B is ...
0
votes
1
answer
567
views
Springboot test not connecting to database in github CI
I am trying to set up github CI workflow to do my springboot application tests. However the test are failing on database connection, even though locally it works fine.
The CI job is as follow
build:
...
1
vote
1
answer
1k
views
Encountering 'E:Invalid archive signature' on GitHub workflow ansible execution when same execution succeeds in local Docker container
I am trying to incrementally test changes to an ansible playbook using a GitHub workflow and I don't understand differences between the GitHub execution and my local execution.
In particular, I cannot ...
4
votes
1
answer
8k
views
Trigger a workflow of another repository and get the artifacts
I have a private GitHub repository named "Test Repo" under an organization. The repository has an action that performs a workflow and uploads an artifact (HTML). I have ten more private ...
0
votes
1
answer
363
views
Is there a way in Python to find the results of a Github CI?
I am using PyGithub to run tests on every pull request in a repository.
I'd like to only run tests on pull requests that have passed my CI.
Is there a way to query the results of the CI in Python?
For ...
1
vote
1
answer
821
views
Integrate git-lfs with Github continuous integration
I have the following Github CI
name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, ...
1
vote
0
answers
252
views
Github CI UITest gives flaky tests 'Unable to monitor event loop'
I am running my UI Tests on Github CI and the tests are flaky. I don't understand how I can fix it. The animations are disabled and I am running the tests on a iPhone 13 plus. A lot of tests are ...
3
votes
1
answer
1k
views
Error during travis ci integration in django and postgres in Github
I integrated travis in to my project where i used postgres but when i tried to test i got stuck in with an unkwown error i.e
$ python manage.py test
Traceback (most recent call last):
File "manage....
0
votes
0
answers
1k
views
Get last commit of file in github actions PR
I am struggling with the following Problem. I need to get the last commit that changed a file. In my local repository everything works fine, but in my github actions merge pipeline it seems as if ...
1
vote
1
answer
1k
views
How to view inputs for an action using github-cli while the action is running?
Is there a way to use the github-cli or api to view the inputs of an action while it is running?
I want to allow Github actions to run concurrently. The resources they will manage are determined by ...
0
votes
0
answers
1k
views
Github CI blowing up memory
I have a CI setup in Github which runs all the tests I currently have (200 approx) which are e2e tests using jest and superagent, following NestJS's standard testing pattern, also meaning that I have ...
3
votes
1
answer
2k
views
Rails can connect to PostgreSQL with GitHub Actions
I have been battling GitHub actions for a while now. I had to switch to GitHub Action after using Travis for a while and cannot set it up to run tests for Rails application. The problem is that no ...
1
vote
2
answers
3k
views
How can I use a recent version of GCC in GitHub CI?
I have a C++ project on GitHub with which I use GitHub CI. My workflow is configured to run on Linux and Windows through the strategy property:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [...
27
votes
1
answer
31k
views
How to access maven dependecy from GitHub Package Registry (Beta)
I uploaded a maven artefact to the GitHub Package Registry (Beta) and want to add it as maven dependency. I'm already in the Regestry-Beta and activated it for my sample HalloMaven project. Also the ...
1
vote
0
answers
410
views
How to run a Docker image under Github CI?
Is there some sort of trick to building and running a Docker image from Github-CI? I've gone through their documentation but I can't find anything that applies to my use case.
Because I want to ...
1
vote
1
answer
658
views
GitHub CI: Push React build to another repo
I've set a GitHub action that make a build of my React application.
I need that build to be pushed to another repo that I'm using to keep track of the builds.
This is the action that is actually ...
1
vote
0
answers
747
views
authenticate to GitHub ghcr in workflow
I have been trying to set up a container workflow in my github project so that it is triggered by every push to to repo and. It must build the container image from the default Dockerfile and push the ...
0
votes
1
answer
306
views
Github CI with TypeScript and Jest [closed]
Locally, running tsc or tsc -w in parallel to npm t -- --watch all work, but trying to replicate what I have into Github CI hasn't been working. For some reason I'm not even able to print the folders ...