aboutsummaryrefslogblamecommitdiff
path: root/.drone.yml
blob: dd52945b21bb38a8112ab365f5e82911097485d2 (plain) (tree)
1
2
3
4
5
6
7
   


              
          
                     
 










                                                
                            
                         
                                                                                        

                    




                                       



                                            
                      

                              

                      
                                           
                                    
           
                            

                   






                                           

                  









                                                
                            
                         
                                                                                        

                    




                                       

                                            








                                                             
                                                              

























                                                   


              

                           
 

               
                                                                      

   
---
kind: pipeline
name: default

workspace:
  base: /drone/garage

steps:
  - name: restore-cache
    image: meltwater/drone-cache:dev
    environment:
      AWS_ACCESS_KEY_ID:
        from_secret: cache_aws_access_key_id
      AWS_SECRET_ACCESS_KEY:
        from_secret: cache_aws_secret_access_key
    pull: true
    settings:
      restore: true
      archive_format: "gzip"
      bucket: drone-cache
      cache_key: '{{ .Repo.Name }}_{{ checksum "Cargo.lock" }}_{{ arch }}_{{ os }}_gzip'
      region: garage
      mount:
        - 'target'
        - '/drone/cargo/registry/index'
        - '/drone/cargo/registry/cache'
        - '/drone/cargo/bin'
        - '/drone/cargo/git/db'
      path_style: true
      endpoint: https://garage.deuxfleurs.fr

  - name: build
    image: rust:buster
    environment:
      CARGO_HOME: /drone/cargo
    commands:
      - apt-get update
      - apt-get install --yes libsodium-dev
      - rustup component add rustfmt
      - pwd
      - cargo fmt -- --check
      - cargo build

  - name: cargo-test
    image: rust:buster
    environment:
      CARGO_HOME: /drone/cargo
    commands:
      - apt-get update
      - apt-get install --yes libsodium-dev
      - cargo test

  - name: rebuild-cache
    image: meltwater/drone-cache:dev
    environment:
      AWS_ACCESS_KEY_ID:
        from_secret: cache_aws_access_key_id
      AWS_SECRET_ACCESS_KEY:
        from_secret: cache_aws_secret_access_key
    pull: true
    settings:
      rebuild: true
      archive_format: "gzip"
      bucket: drone-cache
      cache_key: '{{ .Repo.Name }}_{{ checksum "Cargo.lock" }}_{{ arch }}_{{ os }}_gzip'
      region: garage
      mount:
        - 'target'
        - '/drone/cargo/registry/index'
        - '/drone/cargo/registry/cache'
        - '/drone/cargo/git/db'
        - '/drone/cargo/bin'
      path_style: true
      endpoint: https://garage.deuxfleurs.fr

  - name: smoke-test
    image: rust:buster
    environment:
      CARGO_HOME: /drone/cargo
    commands:
      - apt-get update
      - apt-get install --yes libsodium-dev awscli python-pip
      - pip install s3cmd
      - ./script/test-smoke.sh || (cat /tmp/garage.log; false)

---
kind: pipeline
name: website

steps:
  - name: build
    image: hrektts/mdbook
    commands:
      - cd doc/book
      - mdbook build

  - name: upload
    image: plugins/s3
    settings:
      bucket: garagehq.deuxfleurs.fr
      access_key:
        from_secret: garagehq_aws_access_key_id
      secret_key:
        from_secret: garagehq_aws_secret_access_key
      source: doc/book/book/**/*
      strip_prefix: doc/book/book/
      target: /
      path_style: true
      endpoint: https://garage.deuxfleurs.fr
      region: garage
    when:
      branch:
        - main
      repo:
        - Deuxfleurs/garage

---
kind: signature
hmac: 0fd1c04714fee173821840a1b8383b105339dc2510067cbad8d16937d6dc15f4

...