Skip to content
Snippets Groups Projects
Select Git revision
  • eacd0ef1eb9f79999413debae2de2374817a7229
  • master default
  • renovate/github.com-go-sql-driver-mysql-1.x
  • renovate/go-1.x
  • renovate/golang.org-x-sync-0.x
  • renovate/opentelemetry-go-monorepo
  • renovate/github.com-cenkalti-backoff-v4-5.x
  • renovate/github.com-go-webauthn-webauthn-0.x
  • renovate/github.com-mattn-go-sqlite3-1.x
  • renovate/github.com-go-ldap-ldap-v3-3.x
  • renovate/github.com-prometheus-client_golang-1.x
  • renovate/github.com-bradfitz-gomemcache-digest
  • renovate/github.com-google-go-cmp-0.x
  • renovate/github.com-cenkalti-backoff-v4-4.x
  • renovate/github.com-duo-labs-webauthn-digest
  • auth-server-http-endpoint
  • webauthn
17 results

protocol_test.go

Blame
  • build_static.sh 370 B
    #!/bin/sh
    
    docker run -i -v `pwd`:/dovecot_exporter alpine:3.8 /bin/sh << 'EOF'
    set -ex
    
    # Install prerequisites for the build process.
    apk update
    apk add ca-certificates git go libc-dev
    update-ca-certificates
    
    # Build the dovecot_exporter.
    cd /dovecot_exporter
    export GOPATH=/gopath
    go get -d ./...
    go build --ldflags '-extldflags "-static"'
    strip dovecot_exporter
    EOF