Questions tagged [github-ci]

56 questions
0
votes
1 answer

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 but my experience with git and other software tools…
0
votes
0 answers

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 github creates its own commit for the whole project…
0
votes
1 answer

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 in production without having this .env file?…
0
votes
0 answers

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 one or more test suites (files) for each…
SeekanDestroy
  • 511
  • 1
  • 5
  • 12
0
votes
0 answers

Google App Engine GitHub Action: Error: Unexpected token � in JSON at position 0

I'm trying to deploy my Django API on to Google App Engine using GitHub CI/CD, but I'm getting a strange error that doesn't provide any stack trace in my deploy job. My build job with unit tests and code coverage passes. main.yaml: name: Python…
0
votes
1 answer

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 but attempting to link with file built for…
f4z3k4s
  • 966
  • 7
  • 13
0
votes
2 answers

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 file: name: docker on: push: # publish…
wajdi_jurry
  • 268
  • 2
  • 9
0
votes
1 answer

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 has failed, and now the total pipeline is 15+…
Zach Smith
  • 5,490
  • 26
  • 84
  • 139
0
votes
1 answer

Github CI with TypeScript and Jest

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 with ls. And the installation of both TypeScript…
Philippe Fanaro
  • 6,148
  • 6
  • 38
  • 76
0
votes
0 answers

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 every PR will show the status of the build and…
0
votes
1 answer

Changing gem fork in Docker project causes GitHub CI testing to fail

Rails project with Docker-compose. I needed to change the fork of a gem repository. It is simply a new fork, everything else is identical. So the source of the gem was changed in the Gemfile: From: gem 'csv-importer', gh: 'fork-name/csv-importer',…
PolarisTLX
  • 329
  • 4
  • 18
1 2 3
4