Tor Path
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
Sarah Jamie Lewis 2024-01-02 13:59:20 -08:00
parent 2baf52a81c
commit 4d81bf9d1b
1 changed files with 7 additions and 5 deletions

View File

@ -17,7 +17,8 @@ steps:
- wget https://git.openprivacy.ca/openprivacy/buildfiles/raw/master/tor/tor
- wget https://git.openprivacy.ca/openprivacy/buildfiles/raw/master/tor/torrc
- chmod a+x tor
- ./tor --version
- export PATH=`pwd`:$PATH
- tor --version
- export GO111MODULE=on
- name: quality
image: golang:1.21.5-bookworm
@ -32,7 +33,7 @@ steps:
- name: deps
path: /go
commands:
- export PATH=$PWD:$PATH
- export PATH=`pwd`:$PATH
- sh testing/tests.sh
- name: integ-test
image: golang:1.21.5-bookworm
@ -40,7 +41,8 @@ steps:
- name: deps
path: /go
commands:
- export PATH=$PWD:$PATH
- export PATH=`pwd`:$PATH
- tor --version
- go test -timeout=30m -race -v cwtch.im/cwtch/testing/
- name: filesharing-integ-test
image: golang:1.21.5-bookworm
@ -48,7 +50,7 @@ steps:
- name: deps
path: /go
commands:
- export PATH=$PWD:$PATH
- export PATH=`pwd`:$PATH
- go test -timeout=20m -race -v cwtch.im/cwtch/testing/filesharing
- name: filesharing-autodownload-integ-test
image: golang:1.21.5-bookworm
@ -56,7 +58,7 @@ steps:
- name: deps
path: /go
commands:
- export PATH=$PWD:$PATH
- export PATH=`pwd`:$PATH
- go test -timeout=20m -race -v cwtch.im/cwtch/testing/autodownload
- name: notify-gogs
image: openpriv/drone-gogs