From 1b593a4accd7bff53277d5d59f1783395eaeb0a8 Mon Sep 17 00:00:00 2001 From: Ian Thomas Date: Thu, 22 May 2025 16:22:38 +0100 Subject: [PATCH 1/7] Debug CI --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1b13091..dbb945e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,6 +29,11 @@ jobs: environment-file: dev-environment.yml cache-environment: true + - name: Debug + run: | + micromamba list + which meson + - name: Build run: | meson setup build From 84e3970870e5312c24e55903dabb09369cec8b65 Mon Sep 17 00:00:00 2001 From: Ian Thomas Date: Thu, 22 May 2025 16:27:04 +0100 Subject: [PATCH 2/7] init shell --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dbb945e..b5b6cd9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,10 +24,12 @@ jobs: fetch-depth: 0 - name: Create micromamba environment - uses: mamba-org/setup-micromamba@main + uses: mamba-org/setup-micromamba@v2 with: environment-file: dev-environment.yml cache-environment: true + init-shell: >- + bash - name: Debug run: | From 1c82411df616c83f639a8cb77dcbd28f03b4eb69 Mon Sep 17 00:00:00 2001 From: Ian Thomas Date: Thu, 22 May 2025 16:32:08 +0100 Subject: [PATCH 3/7] debug --- .github/workflows/test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b5b6cd9..791ace2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,7 +27,6 @@ jobs: uses: mamba-org/setup-micromamba@v2 with: environment-file: dev-environment.yml - cache-environment: true init-shell: >- bash From 71cc942cb2780d66a3cf337df65c511425e674b8 Mon Sep 17 00:00:00 2001 From: Ian Thomas Date: Thu, 29 May 2025 11:43:58 +0100 Subject: [PATCH 4/7] debug --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 791ace2..bb46eaa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,9 +26,10 @@ jobs: - name: Create micromamba environment uses: mamba-org/setup-micromamba@v2 with: + environment-name: git2cpp-dev environment-file: dev-environment.yml - init-shell: >- - bash + init-shell: bash + cache-downloads: true - name: Debug run: | From e551270eb9b3c096e0f1e4dd84a562e642d5a05c Mon Sep 17 00:00:00 2001 From: Ian Thomas Date: Thu, 29 May 2025 13:28:17 +0100 Subject: [PATCH 5/7] debug --- .github/workflows/test.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bb46eaa..f6dd63e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ on: defaults: run: - shell: bash + shell: bash -leo pipefail {0} jobs: test: @@ -26,14 +26,12 @@ jobs: - name: Create micromamba environment uses: mamba-org/setup-micromamba@v2 with: - environment-name: git2cpp-dev environment-file: dev-environment.yml - init-shell: bash cache-downloads: true - name: Debug run: | - micromamba list + micromamba env list which meson - name: Build From 53c2ee8ad27504e0634f80c9918d4eab4d8cacef Mon Sep 17 00:00:00 2001 From: Ian Thomas Date: Thu, 29 May 2025 13:30:40 +0100 Subject: [PATCH 6/7] debug --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f6dd63e..2a69c5a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,6 +43,8 @@ jobs: - name: Smoke test working-directory: build run: | + pwd + ls -l ./git2cpp -v ./git2cpp -h From 9d6777672067d4d242e3d9fb4e949dd7cca5cfcb Mon Sep 17 00:00:00 2001 From: Ian Thomas Date: Thu, 29 May 2025 13:35:51 +0100 Subject: [PATCH 7/7] debug --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2a69c5a..8555824 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,9 +44,9 @@ jobs: working-directory: build run: | pwd - ls -l + ls -l git2cpp ./git2cpp -v - ./git2cpp -h + ./git2cpp --version - name: Run tests run: |