From f37a7e335c5dd4be08c26ff7d9a0b23dc6fa374a Mon Sep 17 00:00:00 2001 From: Tyler Mayoff Date: Sat, 19 Jul 2025 22:51:39 -0400 Subject: [PATCH 1/4] try getting around the symlink stuff --- .github/workflows/main.yml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8b4e923..63d1bd5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -59,25 +59,25 @@ jobs: script: | nh darwin build ./dot_config/flake#darwinConfigurations.${{matrix.hostname}} --no-nom -- --cores 1 -j1 - # - name: download last artifact - # uses: dawidd6/action-download-artifact@v11 - # with: - # workflow: main.yml - # workflow_conclusion: success - # name: ${{ matrix.os }}-${{ matrix.hostname }}-result - # if_no_artifact_found: ignore + - name: download last artifact + uses: dawidd6/action-download-artifact@v11 + with: + workflow: main.yml + workflow_conclusion: success + name: ${{ matrix.os }}-${{ matrix.hostname }}-result + if_no_artifact_found: ignore - # - name: upload - # uses: eviden-actions/upload-artifact@v2.0.0 - # with: - # name: ${{ matrix.os }}-${{ matrix.hostname }}-result - # path: - # result + - name: upload + uses: eviden-actions/upload-artifact@v2.0.0 + with: + name: ${{ matrix.os }}-${{ matrix.hostname }}-result + path: + result/* - # - name: extract result - # run: | - # tar -xvf ${{ matrix.os }}-${{ matrix.hostname }}-result.tar.gz last-result || true + - name: extract result + run: | + tar -xvf ${{ matrix.os }}-${{ matrix.hostname }}-result.tar.gz last-result || true - # - name: diff - # run: | - # nix run nixpkgs#nvd -- diff last-result result || true + - name: diff + run: | + nix run nixpkgs#nvd -- diff last-result result || true From 8239542db3113ede053078a9549fd53925834e30 Mon Sep 17 00:00:00 2001 From: Tyler Mayoff Date: Sat, 19 Jul 2025 23:35:03 -0400 Subject: [PATCH 2/4] it's not compressed --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 63d1bd5..95ee212 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -76,7 +76,7 @@ jobs: - name: extract result run: | - tar -xvf ${{ matrix.os }}-${{ matrix.hostname }}-result.tar.gz last-result || true + tar -xvf ${{ matrix.os }}-${{ matrix.hostname }}-result.tar last-result || true - name: diff run: | From 7ebead8a6dea1b5f6a74878b6cf577816cac6874 Mon Sep 17 00:00:00 2001 From: Tyler Mayoff Date: Sat, 19 Jul 2025 23:44:03 -0400 Subject: [PATCH 3/4] list files --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 95ee212..04a5184 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -67,6 +67,8 @@ jobs: name: ${{ matrix.os }}-${{ matrix.hostname }}-result if_no_artifact_found: ignore + - run: ls -la + - name: upload uses: eviden-actions/upload-artifact@v2.0.0 with: From 0e1e8c5bee794db9db001bb6b08431896fd50a9b Mon Sep 17 00:00:00 2001 From: Tyler Mayoff Date: Sat, 19 Jul 2025 23:45:24 -0400 Subject: [PATCH 4/4] disable magic-nix-cache --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 04a5184..6285f89 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,9 +30,9 @@ jobs: with: extra-conf: "lazy-trees = true" - - uses: DeterminateSystems/magic-nix-cache-action@main - with: - use-flakehub: false + # - uses: DeterminateSystems/magic-nix-cache-action@main + # with: + # use-flakehub: false - name: Maximize build space if: runner.os == 'Linux'