Skip to content
Snippets Groups Projects
Select Git revision
  • bc2cd16958d295d1062fc663d98dc6531d0582d6
  • main default protected
  • drip-server-timing
  • compress-middleware
  • v2.11.0
  • v2.10.0
  • v2.9.2
  • v2.9.1
  • v2.9.0
  • v2.8.0
  • v2.7.0
  • v2.6.0
  • v2.5.6
  • v2.5.5
  • v2.5.4
  • v2.5.3
  • v2.5.2
  • v2.5.1
  • v2.5.0
  • v2.4.2
  • v2.4.1
  • v2.4.0
  • v2.3.0
  • v2.2.2
24 results

up.json

Blame
  • .gitlab-ci.yml 847 B
    
    variables:
      NIXOS_VERSION: "23.11"
      NIXPKGS_ALLOW_UNFREE: "1"
      NIXPKGS_ALLOW_INSECURE: "1"
      GIT_DEPTH: 10
    
    stages:
      - test
      - deploy 
    
    #before_script:
    #  - git config --global user.email "${GITLAB_USER_EMAIL}"
    #  - git config --global user.name "${GITLAB_USER_NAME}"
    #  - git config --global credential.helper '!f() { echo "username=gitlab-ci-token"; echo "password=${CI_JOB_TOKEN}"; }; f'
    #  - git config --global pull.rebase true
    #  - git config --global http.sslVerify "false"
    
    after_script:
      - if [ -f .env-gitlab-ci ]; then rm .env-gitlab-ci; fi
    
    test:
      stage: test
      tags:
        - nixos-gen3
      script:
        -  nix develop .#gitlab --command run-ci-tests
    
    #deploy:
    #  stage: deploy
    #  tags:
    #    - nixos-gen3
    #  script:
    #    - nix develop --command deploy
    #  after_script:
    #    - nix develop --command clean-up 
    #
    #  when: on_success