59 questions
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 ...
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
...
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: ...
0
votes
1
answer
1k
views
Github CI run getting failed without change from 15 June ERROR: Error: ENOENT: no such file or directory, stat '/var/folders/sp/m
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 ...
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 ...
0
votes
1
answer
144
views
Getting pull request messages that merged into master branch
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.
...
0
votes
1
answer
2k
views
Github Actions doesn't get triggered on release creation
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-...
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
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 ...
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, ...
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
0
answers
1k
views
how to dynamically changing image name & tags on kustomize.yaml using github actions?
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 ...
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 ...
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 ...
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 ...
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 ...
1
vote
1
answer
982
views
Corporate ca-certificate in git repo
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 ...
0
votes
0
answers
179
views
LoadError on github ci workflow running with rails and ruby
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 ...
0
votes
1
answer
261
views
Need help setting up a github repo
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 ...
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....
1
vote
2
answers
1k
views
Cmake actions build for Windows x86
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 ...
0
votes
1
answer
855
views
Separate Jobs in CI Pipeline result in very long pipeline run
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 ...
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 ...
4
votes
1
answer
3k
views
New GitHub actions run in empty folders
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:...