Questions tagged [github-ci]
56 questions
0
votes
0 answers
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 intended to be reusable by certain private…

Karan Tikku
- 197
- 12
0
votes
0 answers
Error: User: *** is not authorized to perform: sts:AssumeRole on resource: *** Github
I think this is a silly question but I can not find its answer on the internet. I have tried many things but nothing works.
I get the below error.
And is my deploy.yml file.
name: Deploy to production
on:
push:
branches: [ "main" ]
jobs:
…

Girish Bhutiya
- 3,111
- 5
- 31
- 50
0
votes
1 answer
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:
# The type of runner that the job will run…

Viktor
- 521
- 1
- 4
- 17
0
votes
0 answers
Selenium Web driver, python: Test passes in local but fails in GitHub CI due to AssertionError
I´ve faced a problem that my one test passes in local but not in CI.
I have a progress bar with: positions 0%, 50%, 100% of starting a server, status of starting the server - "Server requested", "Spawning server...", "Server ready at" and status…

Oksana Iakovenko
- 1
- 1
0
votes
0 answers
How to fix the Argument list too long error(Jest + Github CI)
I need to run ~400 test suites in my Github CI. I receive the plain string with tests e.g /folder/test1.tsx /anotherFolder/anotherTest.tsx" from the specific job as output and then I'm trying to run them via --runTestsByPath ${{ inputs.SOME_TEST_ARR…
0
votes
0 answers
CloudBuild - GitHub - Expected — Waiting for status to be reported
GitHub settingsPR status check
Hello everyone, I started getting an error getting status from CloudBuild, although some PRs still work fine. What could be wrong? I have already checked all the settings and can't find the problem
Check all GCP…

Oleg Gordon
- 1
- 1
0
votes
0 answers
Laravel Dusk completes test locally but not on github actions
I've been stuck on this for 2 weeks now.
I have made some dusk tests that do complete when i run php artisan dusk locally.
But when i use it in laravel.yaml, so it happens automatically when something gets pushed it doesn't work and i get…

semk
- 1
0
votes
1 answer
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-trigger-workflows#release
on:
release:
types: [published]
…

Most Wanted
- 6,254
- 5
- 53
- 70
0
votes
1 answer
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 reproduce Unable to install package: E:Invalid…

sage
- 4,863
- 2
- 44
- 47
0
votes
0 answers
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 line breaking CI in…

Meltemi
- 37,979
- 50
- 195
- 293
0
votes
0 answers
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 failing the setup database on GitHub CI. This is the…

maxagno3
- 110
- 2
- 9
0
votes
1 answer
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, macos-latest, windows-latest]
…

João Pimentel Ferreira
- 14,289
- 10
- 80
- 109
0
votes
1 answer
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 example something like:
for pull in…

Yaakov Goldsmith
- 3
- 2
0
votes
0 answers
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 change the values of the new generated image & tags…

ask stack
- 1
- 4
0
votes
0 answers
Github CI UITest gives flaky tests 'Unable to monitor event loop'
I am running my UI Tests on Github CI and the tests are flaky. I don't understand how I can fix it. The animations are disabled and I am running the tests on a iPhone 13 plus. A lot of tests are running green, but some are not working. Locally, I…

J. Doe
- 12,159
- 9
- 60
- 114