diff options
| author | Junio C Hamano <gitster@pobox.com> | 2024-02-26 18:10:23 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-02-26 18:10:23 -0800 |
| commit | b4385bf016d0d4b8e9bea6564e2d727082067f69 (patch) | |
| tree | 969b434f3333b5dafbb8077b095d116362674f87 /.github/workflows | |
| parent | Git 2.44 (diff) | |
| parent | refs/reftable: fix leak when copying reflog fails (diff) | |
| download | git-b4385bf016d0d4b8e9bea6564e2d727082067f69.tar.gz git-b4385bf016d0d4b8e9bea6564e2d727082067f69.zip | |
Merge branch 'ps/reftable-backend'
Integrate the reftable code into the refs framework as a backend.
* ps/reftable-backend:
refs/reftable: fix leak when copying reflog fails
ci: add jobs to test with the reftable backend
refs: introduce reftable backend
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/main.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7bacb322e4..683a2d633e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -266,6 +266,9 @@ jobs: - jobname: linux-sha256 cc: clang pool: ubuntu-latest + - jobname: linux-reftable + cc: clang + pool: ubuntu-latest - jobname: linux-gcc cc: gcc cc_package: gcc-8 @@ -277,6 +280,9 @@ jobs: - jobname: osx-clang cc: clang pool: macos-13 + - jobname: osx-reftable + cc: clang + pool: macos-13 - jobname: osx-gcc cc: gcc cc_package: gcc-13 @@ -287,6 +293,9 @@ jobs: - jobname: linux-leaks cc: gcc pool: ubuntu-latest + - jobname: linux-reftable-leaks + cc: gcc + pool: ubuntu-latest - jobname: linux-asan-ubsan cc: clang pool: ubuntu-latest |
