Skip to content

Commit

Permalink
more paralellization
Browse files Browse the repository at this point in the history
  • Loading branch information
psych0d0g committed Dec 19, 2023
1 parent af92a26 commit 75a7d2c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .woodpecker/build_new_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ steps:
- GOOS=linux
- GOARCH=amd64
commands:
- mkdir ./out
- mkdir -p ./out
- go mod tidy
- go build -o "./out/verify_pw_${ARCH}" verify_pw.go
build-pureftpd-authd-plugin_x86:
Expand All @@ -16,7 +16,7 @@ steps:
- GOOS=linux
- GOARCH=386
commands:
- mkdir ./out
- mkdir -p ./out
- go mod tidy
- go build -o "./out/verify_pw_${ARCH}" verify_pw.go
build-pureftpd-authd-plugin_arm64:
Expand All @@ -26,7 +26,7 @@ steps:
- GOOS=linux
- GOARCH=arm64
commands:
- mkdir ./out
- mkdir -p ./out
- go mod tidy
- go build -o "./out/verify_pw_${ARCH}" verify_pw.go
build-pureftpd-authd-plugin_arm:
Expand All @@ -36,7 +36,7 @@ steps:
- GOOS=linux
- GOARCH=arm
commands:
- mkdir ./out
- mkdir -p ./out
- go mod tidy
- go build -o "./out/verify_pw_${ARCH}" verify_pw.go
release-to-github:
Expand Down
20 changes: 10 additions & 10 deletions .woodpecker/test_changes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,55 +19,55 @@ services:
- 5432
steps:
prepare_mysql_database:
group: db_prep
group: test_prep
image: mysql
commands:
- test/prepare_mysql.sh
prepare_postgresql_database:
group: db_prep
group: test_prep
image: postgres
commands:
- test/prepare_postgresql.sh
environment:
- PGPASSWORD=example
build-test-pureftpd-authd-plugin_x86_64:
group: build_binaries
group: test_prep
image: golang:1.21.5
environment:
- GOOS=linux
- GOARCH=amd64
commands:
- mkdir ./out
- mkdir -p ./out
- go mod tidy
- go build -o "./out/verify_pw_${ARCH}" verify_pw.go
build-test-pureftpd-authd-plugin_x86:
group: build_binaries
group: test_prep
image: golang:1.21.5
environment:
- GOOS=linux
- GOARCH=386
commands:
- mkdir ./out
- mkdir -p ./out
- go mod tidy
- go build -o "./out/verify_pw_${ARCH}" verify_pw.go
build-test-pureftpd-authd-plugin_arm64:
group: build_binaries
group: test_prep
image: golang:1.21.5
environment:
- GOOS=linux
- GOARCH=arm64
commands:
- mkdir ./out
- mkdir -p ./out
- go mod tidy
- go build -o "./out/verify_pw_${ARCH}" verify_pw.go
build-test-pureftpd-authd-plugin_arm:
group: build_binaries
group: test_prep
image: golang:1.21.5
environment:
- GOOS=linux
- GOARCH=arm
commands:
- mkdir ./out
- mkdir -p ./out
- go mod tidy
- go build -o "./out/verify_pw_${ARCH}" verify_pw.go
test-authentication-pgsql:
Expand Down

0 comments on commit 75a7d2c

Please sign in to comment.