Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ingress nginx 1.10.1 #132

Merged
merged 24 commits into from
Jun 11, 2024
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
7f3d589
add drone's build and validate job in github actions workflow
rayandas Feb 14, 2022
87da16c
add release workflow which will run only while tagging
rayandas Feb 14, 2022
9c749e1
added git in workflow steps for build and release
rayandas Feb 16, 2022
0f5a40e
cherry pick commits: f3277463565ce64284d96aa659b5d0d11c17f058, b8966a…
ryansann May 7, 2020
28f0332
Update docker version and buildx version
Jan 30, 2021
921c3a7
Add push even for debugging
rmweir Apr 13, 2021
029404e
Added non-package steps to push and pr events
rmweir Apr 14, 2021
607f53e
Add apk-tools first
rmweir Apr 16, 2021
c61f916
Revert "Add apk-tools first"
kinarashah May 5, 2021
3cc37e3
Fix flaky arm64 emulator issue https://github.com/docker/buildx/issue…
kinarashah May 5, 2021
aa1408c
Use Go 1.17.2 and fix golint installation
Oct 1, 2021
f728e32
Remove test step from our CI
Oct 21, 2021
e323ce0
removed drone ci
rayandas Feb 14, 2022
3aab8e4
revert back PR #81
rayandas Feb 23, 2022
4914437
remove depreview action
kinarashah Apr 21, 2022
ac323d5
use rancher's repository image
kinarashah Apr 25, 2022
8ac5f21
fix drone build failure
samkulkarni20 Jun 10, 2022
849b263
Add arm and s390x in the arches in scripts/build.
rayandas Jan 27, 2023
ba0a397
use go 1.21.5 | go mod tidy
chiukapoor Feb 14, 2024
e47a1ea
Fix adding 1.30 version
chiukapoor Feb 21, 2024
dae8cbf
remove the upstream's workflow
jiaqiluo May 3, 2024
2345f3a
Remove Drone CI file
jiaqiluo May 7, 2024
59c4a6f
Add Rancher's workflow files
jiaqiluo May 7, 2024
c5c19f4
add the workflow for FOSSA
jiaqiluo May 29, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix drone build failure
`go install ginkgo` followed by `which ginkgo` is newly added in the upstream repo.
This is making the drone build fail for arm64 arch. The ginkgo library
gets installed under $GOPATH/bin/linux_arm64 dir. This is unlike amd64 images
which typically install go libraries under $GOPATH/bin. Since the previously mentioned
dir is not in PATH, the command `which ginkgo` fails. I've added this location to PATH
to fix the build failure. See upstream PRs linked below for more info:
kubernetes#8566
kubernetes#8569
  • Loading branch information
samkulkarni20 authored and vardhaman22 committed Jun 6, 2024
commit 8ac5f217b94c6dbcf3e3f5a12c1b572aba221bec
1 change: 1 addition & 0 deletions build/run-in-docker.sh
Original file line number Diff line number Diff line change
@@ -84,6 +84,7 @@ if [[ "$DOCKER_IN_DOCKER_ENABLED" == "true" ]]; then
#go env
go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo@v2.17.1
find / -type f -name ginkgo 2>/dev/null
PATH=$PATH:$GOPATH/bin/linux_arm64
which ginkgo
/bin/bash -c "${FLAGS}"
else