Commit 282c8349 authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Permite job de compilación en cualquier runner

Fija tag de runner solamente en jobs de pre-build y test, ya que el job
de build es bastante pesado y apenas se beneficia de la caché (pero el
tiempo de ejecución sí es mucho menor en runners compartidos).
parent e15cce95
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7,8 +7,6 @@
  before_script:
    - type yarn grunt java
    - yarn install
  tags:
    - custom-runner
  cache:
    paths:
      - node_modules/
@@ -21,6 +19,8 @@ prepare-unbuilt-version:
  stage: pre-build
  script:
    - grunt preBuild
  tags:
    - custom-runner
  artifacts:
    name: ${CI_JOB_NAME}_${CI_COMMIT_REF_NAME}
    expire_in: 1 week
+2 −0
Original line number Diff line number Diff line
.run-tests:
  extends: .web-build
  tags:
    - custom-runner
  cache:
    policy: pull