Louis-Philippe Véronneau pushed to branch bts_1080352 at lintian / lintian
Commits:
- 
a60e951b
by Otto Kekäläinen at 2024-09-11T17:00:22+00:00
- 
4995abc8
by Bas Couwenberg at 2024-09-11T19:43:21+00:00
2 changed files:
Changes:
| ... | ... | @@ -17,13 +17,16 @@ | 
| 17 | 17 |  #     62 -> Java18
 | 
| 18 | 18 |  #     63 -> Java19
 | 
| 19 | 19 |  #     64 -> Java20
 | 
| 20 | -#     65 -> Java21 - highest version in Debian unstable
 | |
| 20 | +#     65 -> Java21
 | |
| 21 | +#     66 -> Java22
 | |
| 22 | +#     67 -> Java23
 | |
| 23 | +#     68 -> Java24 - highest version in Debian unstable
 | |
| 21 | 24 | |
| 22 | 25 |  # current default in Debian
 | 
| 23 | -default-bytecode-version = 61
 | |
| 26 | +default-bytecode-version = 65
 | |
| 24 | 27 | |
| 25 | 28 |  # highest known anywhere
 | 
| 26 | -highest-known-bytecode-version = 65
 | |
| 29 | +highest-known-bytecode-version = 68
 | |
| 27 | 30 | |
| 28 | 31 |  # The following should not change
 | 
| 29 | 32 |  lowest-known-bytecode-version = 45 | 
| ... | ... | @@ -29,15 +29,7 @@ lintian-git: | 
| 29 | 29 |    - apt-get update
 | 
| 30 | 30 |    - apt-get install -y ${WORKING_DIR}/lintian_*.deb
 | 
| 31 | 31 | |
| 32 | +# Extend Salsa-CI build jobs to have longer timeout as the default GitLab
 | |
| 33 | +# timeout (1h) is often not enough.
 | |
| 32 | 34 |  .test-autopkgtest: &test-autopkgtest
 | 
| 33 | -  # Extend Salsa-CI build jobs to have longer timeout as the default GitLab
 | |
| 34 | -  # timeout (1h) is often not enough.
 | |
| 35 | 35 |    timeout: 3h | 
| 36 | -  # Try to check whether the maximum job timeout is extended to longer one.
 | |
| 37 | -  before_script:
 | |
| 38 | -    - 'echo "CI/CD Settings / General pipelines / Timeout: $CI_JOB_TIMEOUT seconds"'
 | |
| 39 | -    - |
 | |
| 40 | -      if [[ $CI_JOB_TIMEOUT -le 3600 ]]; then
 | |
| 41 | -        echo -e "\e[31;1mERROR: CI/CD Settings / General pipelines / Timeout is too short ($CI_JOB_TIMEOUT). Use longer timeout - e.g. 7200 (2h) is enough.\e[0m"
 | |
| 42 | -        exit 1
 | |
| 43 | -      fi |