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


              





               
      







                                     











                                                
                                                                                               

                    




                                



                                            
                                

                              


                                           


                                        
                                      
                                                        












                                                
                                                                                               

                    




                                

                                            
kind: pipeline
name: default

workspace:
  base: /drone

clone:
  disable: true

steps:
  - name: clone
    image: alpine/git
    commands:
      - mkdir -p cargo
      - git clone $DRONE_GIT_HTTP_URL
      - cd netapp
      - git checkout $DRONE_COMMIT

  - 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 "netapp/Cargo.lock" }}_{{ arch }}_{{ os }}_gzip'
      region: garage
      mount:
        - 'netapp/target'
        - 'cargo/registry/index'
        - 'cargo/registry/cache'
        - 'cargo/bin'
        - 'cargo/git/db'
      path_style: true
      endpoint: https://garage.deuxfleurs.fr

  - name: build
    image: rustlang/rust:nightly
    environment:
      CARGO_HOME: /drone/cargo
    commands:
      - apt-get update
      - apt-get install --yes libsodium-dev
      - cargo install cargo-all-features
      - cd netapp
      - cargo build-all-features
      - cargo build --example fullmesh
      - cargo build --example basalt --features "basalt"

  - 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 "netapp/Cargo.lock" }}_{{ arch }}_{{ os }}_gzip'
      region: garage
      mount:
        - 'netapp/target'
        - 'cargo/registry/index'
        - 'cargo/registry/cache'
        - 'cargo/bin'
        - 'cargo/git/db'
      path_style: true
      endpoint: https://garage.deuxfleurs.fr