Received: from out2.migadu.com (out2.migadu.com [188.165.223.204]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 74113780772 for <~alpine/devel@lists.alpinelinux.org>; Fri, 7 Oct 2022 23:13:30 +0000 (UTC) Mime-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ayaya.dev; s=key1; t=1665184409; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=96eRbyKsIYA+A6Jf94OK5KbiIPhns0BUEkKLsnXgTAg=; b=icWrFUUhYyGXUsTC/k4fDvW+YM9rCdkFMp6fSsCR+fU2VkptURCozboLnEhC/MgDYj6HP/ VdHsrsa0e+UmJWuN+a+HETH8Dv0nAhQZBKd9mE4g6tXb5pVX37hdAISnaAtMwlDEprG03m UK94L1bnHptVW68m5f7YCe8haEywVug= Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Sat, 08 Oct 2022 01:13:21 +0200 Message-Id: X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: "alice" To: "Wolf" , <~alpine/devel@lists.alpinelinux.org> Subject: Re: Why did pipeline build two packages? References: In-Reply-To: X-Migadu-Flow: FLOW_OUT On Sat Oct 8, 2022 at 12:40 AM CEST, Wolf wrote: > Hi, > > I'm curious about this[0] job that was executed as part of pipeline for m= y > merge request. It looks like it tried to build two packages: > > >>> testing/bazel: build succesfully > >>> testing/bazel4: build succesfully > > Any idea why? My merge request[1] is touching just one of them, so I > have no idea why both are built. It seems a bit unnecessary and the > build takes quite long. > > Given that I do not touch bazel4, I guess following error is expected? > > >>> bazel4: Updating the testing/x86_64 repository index... > >>> bazel4: Signing the index... > >>> ERROR: the built package (bazel4) is already in the repo > > Any ideas? probably because bazel4 provides=3Dbazel and the thing that triggers the rebuilds for CI gets confused by it. the new one should be named bazel5 in any case :) > > Thank, > W. > > 0: https://gitlab.alpinelinux.org/gray-wolf/aports/-/jobs/865337 > 1: https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/39933 > > --=20 > There are only two hard things in Computer Science: > cache invalidation, naming things and off-by-one errors.