59 questions
2
votes
0
answers
77
views
How do I sign NuGet package built by CI/CD (e.g. GitHub or GitLab)
I'm new to this, so please bear with me. I couldn't find documentation on my question:
I'd like to build a .NET project on GitHub or GitLab using CI/CD and have it published to NuGet.org.
Is it ...
0
votes
1
answer
22
views
Manage generated folders by build_runner while CI/CD automation
I am trying to build release apk with Github CI/CD automation. I have Used Jsonserializable and Intl packages in my project. And build_runner is generating generated folders in project which we doesn'...
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.
...
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
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 ...
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
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
0
answers
252
views
Why did GitHub CI just start failing to locate libcurl?
CI was working just fine but now it's failing. I don't believe anyone has made any changes to test environment or the set .yml. It just looks like libcurl4-openssl-dev is no longer available?!?
The ...
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 ...
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, ...
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
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 ...
2
votes
0
answers
2k
views
github action check if first commit to a branch before doing the action
Currently using the Submit Pull Request where it will automatically create a pull request for the branch but I wanted to it to run only for the first time I committed a branch, how do I stop it from ...
1
vote
2
answers
627
views
How will the CICD code pick the environment variables without .env file in Github
I am aware that we don't commit .env file to GIT since it contains secret password of the application. Now, my question is that how come our code via CICD pipeline for this project repository will run ...
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 ...
2
votes
3
answers
2k
views
How to run a CircleCI job in a github repo only if a file in the same repo is added a new entry?
I have added a job in the existing circleci workflow, I would like to run that job only if a yaml file is changed in the repo. Is there any way to do it ?
TIA.
1
vote
1
answer
2k
views
Xcode build fails with Undefined symbols for architecture arm64:
I got the following warning on Github CI when trying to build an iOS archive:
ld: warning: ignoring file ios/myframework.xcframework/ios-arm64/myframework.framework/myframework, building for iOS-arm64 ...
1
vote
2
answers
905
views
Docker Github workflow with database dependency: No such container
I am trying to figure out whats going on with Github workflows using a database dependency (MySQL actually), but I can't find any explanation or solution for my situation.
This is my workflow yaml ...
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
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
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 ...
1
vote
1
answer
361
views
GitHub CI script for build and push to different ECR based on differenct branch push
I have a project on GitHub, I want to setup CI job to build docker images and push to AWS ECR. My requirements are -
One single ci file (I have created.github/workflows/aws.yml)
CI job must trigger ...
0
votes
0
answers
74
views
Show live state of Jenkins build in Github PR
After diving into this post: Show current state of Jenkins build on GitHub repo
I still haven't found a way to show the current status of the build (last Jenkins run result) in every PR.
Meaning that ...