Questions tagged [github-ci]
56 questions
1
vote
1 answer
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 certificate in the git repo for CI purposes.
That…

Yves Moisan
- 21
- 3
1
vote
1 answer
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 database is started for Rails to connect to and…

PurryFury
- 113
- 11
1
vote
2 answers
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: [ubuntu-latest, windows-latest]
This has worked…

jweightman
- 328
- 1
- 12
1
vote
0 answers
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 maintain compatibility with generic Docker, I don't…

Cerin
- 60,957
- 96
- 316
- 522
1
vote
1 answer
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 running:
on:
push:
branches: [master]
jobs:
…

Federico Arona
- 125
- 1
- 13
1
vote
0 answers
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 image to my GitHub container registry (GHCR). …

Mehdi Haghgoo
- 3,144
- 7
- 46
- 91
1
vote
2 answers
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 Studio 16 2019" -A Win32…

quotschmacher
- 59
- 5
1
vote
1 answer
Using Github CI Pipeline with wxWidgets
I got a cross platform application using a wxWidgets gui and want to test the cross build with github ci pipeline.
The Linux test runs fine as i'm able to install the wxWidgets dependencies using apt-get.
But i got no idea how to setup the wxWidgets…

quotschmacher
- 59
- 5
1
vote
1 answer
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 on the push to master and sandbox branches only
If…

Bopsi
- 2,090
- 5
- 36
- 58
1
vote
1 answer
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.py", line 22, in
…

Dev
- 31
- 5
1
vote
1 answer
GitHub CI error parsing HTTP 404 response body when pushing the image
Coming from this issue
I am using GitHub Actions for Gradle project with this given steps:
name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 13
uses:…

suliman
- 334
- 6
- 17
1
vote
1 answer
Dockerfile COPY failed: stat no such file, when using GitHub CI
I am using GitHub Actions for Gradle project with this given steps:
name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 11
uses: actions/setup-java@v1
…

suliman
- 334
- 6
- 17
1
vote
1 answer
GithubActions CI: how to find a file inside the windows VM?
I have a build failing because it doesn't find some particular file in some particular path. Possibly this file is just in a different SDK directory (because of having a new version), so I just want to search for it in the whole C: drive.
However,…

knocte
- 16,941
- 11
- 79
- 125
0
votes
1 answer
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 environment which is drastically different from…

Himanshu Saraswat
- 93
- 1
- 2
- 5
0
votes
1 answer
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 please help or provide direction using that I can…

Dheeraj D
- 4,386
- 4
- 20
- 34