From 3e290e4ab7e217b5b11849e339b54414e7022246 Mon Sep 17 00:00:00 2001 From: Terry Kong Date: Tue, 27 Feb 2024 17:35:52 -0800 Subject: [PATCH] Fixes issue of bumped manifest patches residing in old ephemeral dir (#592) A bug was introduced after #566 was merged where patches in the manifest now had their relative path updated to `patches-new` even after replacing the patches directory. See this automatic bump PR: https://github.com/NVIDIA/JAX-Toolbox/pull/591/files#diff-fe97711a3e6691d7687dcb162852ad8d926930e75cb7bcba71b5eaa3112056efR32 --- .github/container/manifest.yaml | 1 - .github/workflows/ci.yaml | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/container/manifest.yaml b/.github/container/manifest.yaml index 1cda1f7b0..74a3197cd 100644 --- a/.github/container/manifest.yaml +++ b/.github/container/manifest.yaml @@ -1,4 +1,3 @@ -# Updated in: 2023-12-01 jax: url: https://github.com/google/jax.git tracking_ref: main diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3cc7375ea..27981c28c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -127,6 +127,7 @@ jobs: else rm -rf patches-new manifest.yaml.new fi + sed -i 's|file://patches-new/|file://patches/|g' manifest.yaml git diff - name: Upload bumped manifest/patches to be used in build-base