add release workflow

for each tag a new release, including binaries, is automatically created
This commit is contained in:
Nicola Murino
2020-06-28 15:57:33 +02:00
parent 6ab4e9f533
commit 165110872b
4 changed files with 285 additions and 83 deletions

View File

@@ -348,11 +348,12 @@ func TestBasicSFTPHandling(t *testing.T) {
func TestConcurrentLogins(t *testing.T) {
usePubKey := true
numLogins := 50
u := getTestUser(usePubKey)
u.QuotaFiles = numLogins + 1
user, _, err := httpd.AddUser(u, http.StatusOK)
assert.NoError(t, err)
var wg sync.WaitGroup
numLogins := 50
testFileName := "test_file.dat"
testFilePath := filepath.Join(homeBasePath, testFileName)
testFileSize := int64(65535)