Hi,
Since the last updates, it looks like I have an issue on my Gitlab CI, I have the following messages :
Executing "step_script" stage of the job script
00:04
Using effective pull policy of [always] for container nimlang/nim:2.2.2
Using docker image sha256:c89572e02c4a59fa7b702e156c515b26879245d8e0526333df6b121d1b596704 for nimlang/nim:2.2.2 with digest nimlang/nim@sha256:3c8e3b2781ccbf6afc9fa6279df875f954b98c97105c463514608914ae9ff5fd ...
$ apt-get update && apt-get install -y libpcre3 libpcre3-dev
Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
Get:5 http://deb.debian.org/debian trixie-updates/main amd64 Packages [5412 B]
Get:6 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [163 kB]
Fetched 10.1 MB in 2s (4907 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Package libpcre3-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Unable to locate package libpcre3
E: Package 'libpcre3-dev' has no installation candidate
This is an extract of my .gitlab-ci.yml
.install_pcre: &install_pcre
before_script:
- apt-get update && apt-get install -y libpcre3 libpcre3-dev
unit_tests:
stage: test
image: nimlang/nim:2.2.2
<<: *install_pcre
script:
- nimble install -y
- nimble test unit
artifacts:
when: always
paths:
- records/
expire_in: 3 days
Hi,
Since the last updates, it looks like I have an issue on my Gitlab CI, I have the following messages :
This is an extract of my .gitlab-ci.yml