.github/workflows: use new void containers

This commit is contained in:
Duncan Overbruck 2023-08-31 17:12:58 +02:00
parent f68893ec9a
commit efee4f1e97
No known key found for this signature in database
GPG Key ID: 335C1D17EC3D6E35
5 changed files with 7 additions and 7 deletions

View File

@ -19,10 +19,10 @@ jobs:
c_compiler: [gcc, clang] c_compiler: [gcc, clang]
include: include:
- c_library: glibc - c_library: glibc
void_image: ghcr.io/void-linux/void-linux:20220530rc01-full-x86_64 void_image: ghcr.io/void-linux/void-glibc-full:20230830r1
- c_library: musl - c_library: musl
void_image: ghcr.io/void-linux/void-linux:20220530rc01-full-x86_64-musl void_image: ghcr.io/void-linux/void-musl-full:20230830r1
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: ${{ matrix.void_image }} container: ${{ matrix.void_image }}

View File

@ -21,7 +21,7 @@ jobs:
contents: read contents: read
security-events: write security-events: write
container: container:
image: ghcr.io/void-linux/void-linux:20220530rc01-full-x86_64 image: ghcr.io/void-linux/void-glibc-full:20230830r1
steps: steps:
- name: Prepare container - name: Prepare container
run: | run: |

View File

@ -9,7 +9,7 @@ jobs:
latest: latest:
if: github.repository == 'void-linux/xbps' if: github.repository == 'void-linux/xbps'
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: ghcr.io/void-linux/void-linux:20220530rc01-full-x86_64 container: ghcr.io/void-linux/void-glibc-full:20230830r1
env: env:
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
steps: steps:

View File

@ -17,7 +17,7 @@ concurrency:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: ghcr.io/void-linux/void-linux:20220530rc01-full-x86_64 container: ghcr.io/void-linux/void-glibc-full:20230830r1
steps: steps:
- name: Prepare container - name: Prepare container
run: | run: |

4
TODO
View File

@ -1,10 +1,10 @@
libxbps: libxbps:
- transaction: avoid fetching the whole pkg when updating and only fetch - transaction: avoid fetching the whole pkg when updating and only fetch
modified files from target pkg. modified files from target pkg.
- transaction: split fetch part to xbps_transaction_fetch().
- transaction: check for obsoletes exactly once, via xbps_transaction_prepare().
- transaction: check for free space in all affected top-level dirs. - transaction: check for free space in all affected top-level dirs.
- transaction: check all pkg top-level dirs to see if they are writable. - transaction: check all pkg top-level dirs to see if they are writable.
- cache: download cached packages and signatures into a per repository
directory like repodata files in /var/db/xbps
xbps-*: xbps-*:
- Document exit codes. - Document exit codes.