Raymond Toy pushed to branch rtoy-add-ubuntu-runner at cmucl / cmucl

Commits:

1 changed file:

Changes:

  • .gitlab-ci.yml
    ... ... @@ -19,7 +19,9 @@ variables:
    19 19
       script:
    
    20 20
         - echo PATH = $PATH
    
    21 21
         - ls -F /usr/local/bin
    
    22
    -    # - type -all gitlab-runner
    
    22
    +    # Make sure gitlab-runner is available because it's needed by the
    
    23
    +    # VM to upload artifacts.
    
    24
    +    - type -all gitlab-runner
    
    23 25
         # Download binaries.  (Do we really need the extras tarball?)
    
    24 26
         - $CURL -o cmucl-$version-$osname.tar.$tar_ext $download_url/cmucl-$version-$osname.tar.$tar_ext
    
    25 27
         - $CURL -o cmucl-$version-$osname.extra.tar.$tar_ext $download_url/cmucl-$version-$osname.extra.tar.$tar_ext
    
    ... ... @@ -318,7 +320,7 @@ linux:static-analyzer:
    318 320
         - make -C build-4/lisp ANALYZER=-fanalyzer > analyzer.log 2>&1
    
    319 321
     
    
    320 322
     #### OpenSUSE jobs ####
    
    321
    -opensuse:install:
    
    323
    +ubuntu:install:
    
    322 324
       <<: *install_configuration
    
    323 325
       tags:
    
    324 326
         - ubuntu
    
    ... ... @@ -326,30 +328,30 @@ opensuse:install:
    326 328
         osname: "linux"
    
    327 329
         CURL: "curl"
    
    328 330
     
    
    329
    -opensuse:build:
    
    331
    +ubuntu:build:
    
    330 332
       <<: *build_configuration
    
    331 333
       tags:
    
    332 334
         - ubuntu
    
    333 335
       needs:
    
    334
    -    - job: opensuse:install
    
    336
    +    - job: ubuntu:install
    
    335 337
           artifacts: true
    
    336 338
     
    
    337
    -opensuse:test:
    
    339
    +ubuntu:test:
    
    338 340
       <<: *unit_test_configuration
    
    339 341
       tags:
    
    340 342
         - ubuntu
    
    341 343
       needs:
    
    342 344
         # Needs artifacts from build (dist/)
    
    343
    -    - job: opensuse:build
    
    345
    +    - job: ubuntu:build
    
    344 346
           artifacts: true
    
    345 347
     
    
    346
    -opensuse:ansi-test:
    
    348
    +ubuntu:ansi-test:
    
    347 349
       <<: *ansi_test_configuration
    
    348 350
       tags:
    
    349 351
         - ubuntu
    
    350 352
       needs:
    
    351 353
         # Needs artifacts from build (dist/)
    
    352
    -    - job: opensuse:build
    
    354
    +    - job: ubuntu:build
    
    353 355
           artifacts: true
    
    354 356
     
    
    355 357
     # Optional job that runs the markdown link checker.  This is optional