Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
164 views

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 ...
Kirill Golikov's user avatar
2 votes
3 answers
5k views

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 ...
Leonardo Sibela's user avatar
3 votes
2 answers
2k views

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: ...
Quambadeur's user avatar
0 votes
1 answer
1k views

CI job was working fine and it was posting the build successfully but after 15th June (Tentative) it started getting failed and unable to identify the reason why. Getting below error. Can somebody ...
Dheeraj D's user avatar
  • 4,471
1 vote
0 answers
258 views

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 ...
fearless_fool's user avatar
0 votes
1 answer
144 views

I have a GitHub Actions workflow in place that is triggered whenever a PR is closed and merged. This action automatically generates an APK and attaches it to a new GitHub release with a specific tag. ...
nogabemist's user avatar
0 votes
1 answer
2k views

I have github actions workflow which should be triggered on release creation name: "Attach package to release assets" # https://docs.github.com/en/actions/using-workflows/events-that-...
Most Wanted's user avatar
  • 7,249
0 votes
1 answer
200 views

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 ...
Himanshu Saraswat's user avatar
0 votes
1 answer
567 views

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: ...
Viktor's user avatar
  • 561
1 vote
1 answer
1k views

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 ...
sage's user avatar
  • 5,664
1 vote
1 answer
821 views

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, ...
João Pimentel Ferreira's user avatar
5 votes
1 answer
1k views

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 ...
Pieterjan's user avatar
  • 3,709
0 votes
0 answers
1k views

if i have my kustomize.yaml file here : apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization images: - name: nix/image newName: nix/image2 newTag: latest and i want to dynamically ...
ask stack's user avatar
0 votes
0 answers
1k views

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 ...
markussiebert's user avatar
0 votes
1 answer
363 views

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 ...
Yaakov Goldsmith's user avatar
3 votes
1 answer
2k views

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 ...
PurryFury's user avatar
  • 173
0 votes
0 answers
1k views

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 ...
SeekanDestroy's user avatar
1 vote
1 answer
982 views

We want to use GitHub Actions for CI. The Dockerfile we are using behind our corporate FW involves COPYing our certificate and updating ca-certificates. That means I need to add the corporate ...
Yves Moisan's user avatar
0 votes
0 answers
179 views

I recently upgraded my GitHub CI workflow to use ubuntu-22.04 from previously used ubuntu-18.04 since ubuntu-18.04 would be deprecated this year in December. As soon as I upgraded it, it started ...
maxagno3's user avatar
  • 196
0 votes
1 answer
261 views

I am an EE student who was able to secure a summer job with a CS professor. He will start working on a development project and asked me to setup a GitHub repo for the same. I have coding experience ...
freshman_2021's user avatar
3 votes
1 answer
1k views

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....
Dev's user avatar
  • 51
1 vote
2 answers
1k views

I have a Cmake/wxWidgets project that builds fine on my pc. I compile wxWidgets using nmake /f makefile.vc BUILD=release TARGET_CPU=X86 and generate the CMake project using cmake .. -G "Visual ...
quotschmacher's user avatar
0 votes
1 answer
855 views

I had a version of the following pipeline that ran as a single job, and all in this took under 6 minutes. I then updated the pipeline to be broken up into separate Jobs to make it easier to know which ...
Zach Smith's user avatar
  • 5,704
1 vote
0 answers
410 views

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 ...
Cerin's user avatar
  • 65.6k
4 votes
1 answer
3k views

I am working with new GitHub actions, idea of a workflow below is to run when pr is opened or synchronised, it should first check out and install dependencies and afterwards run few yarn scripts name:...
Ilja's user avatar
  • 46.8k