From 787ab2fc3afb7c3c97f5b5e21fc34b2e6c85245e Mon Sep 17 00:00:00 2001 From: bwplotka Date: Thu, 6 Feb 2025 11:11:46 +0000 Subject: [PATCH] debugging https://github.com/prometheus/test-infra/issues/832 Signed-off-by: bwplotka --- .github/workflows/ci.yml | 3 ++- Makefile | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3bf12b07c4..e9a637c35d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,8 @@ jobs: GOTOOLCHAIN: local container: # The go version in this image should be N-1 wrt test_go. - image: quay.io/prometheus/golang-builder:1.22-base + # DEBUGGING https://github.com/prometheus/test-infra/issues/832 + image: quay.io/prometheus/golang-builder:1.23-main steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - run: make build diff --git a/Makefile b/Makefile index 0b5935de00..d05a5a18bb 100644 --- a/Makefile +++ b/Makefile @@ -51,13 +51,14 @@ ui-bump-version: cd web/ui && npm install git add "./web/ui/package-lock.json" "./**/package.json" +## Debugging https://github.com/prometheus/test-infra/issues/832#issuecomment-2639527788 .PHONY: ui-install ui-install: - cd $(UI_PATH) && npm install + cd $(UI_PATH) && npm install --verbose # The old React app has been separated from the npm workspaces setup to avoid # issues with conflicting dependencies. This is a temporary solution until the # new Mantine-based UI is fully integrated and the old app can be removed. - cd $(UI_PATH)/react-app && npm install + cd $(UI_PATH)/react-app && npm install --verbose .PHONY: ui-build ui-build: