-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Actions for DB & E2E tests (#24494)
following #24314 and #24434, this PR moves drone cron pipelines to (GitHub) Actions. As these are mostly compatible with Gitea Actions, when we start to dogfood, these will already be migrated. --------- Co-authored-by: silverwind <me@silverwind.io>
- Loading branch information
1 parent
ad8631c
commit f7f0782
Showing
9 changed files
with
428 additions
and
853 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
name: "Pull: Compliance Tests" | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
lint_basic: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
- name: setup go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '>=1.20' | ||
- name: deps-backend | ||
run: make deps-backend deps-tools | ||
- name: lint backend | ||
run: make lint-backend | ||
env: | ||
GOPROXY: https://goproxy.io # proxy.golang.org is blocked in China, this proxy is not | ||
GOSUMDB: sum.golang.org | ||
TAGS: bindata sqlite sqlite_unlock_notify | ||
lint_windows: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
- name: setup go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '>=1.20' | ||
- name: deps-backend | ||
run: make deps-backend deps-tools | ||
- name: lint-backend-windows | ||
run: make lint-go-windows lint-go-vet | ||
env: | ||
GOPROXY: https://goproxy.io # proxy.golang.org is blocked in China, this proxy is not | ||
GOSUMDB: sum.golang.org | ||
TAGS: bindata sqlite sqlite_unlock_notify | ||
GOOS: windows | ||
GOARCH: amd64 | ||
lint_gogit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
- name: setup go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '>=1.20' | ||
- name: deps-backend | ||
run: make deps-backend deps-tools | ||
- name: lint-backend-gogit | ||
run: make lint-backend | ||
env: | ||
GOPROXY: https://goproxy.io # proxy.golang.org is blocked in China, this proxy is not | ||
GOSUMDB: sum.golang.org | ||
TAGS: bindata gogit sqlite sqlite_unlock_notify | ||
- name: checks backend | ||
run: make --always-make checks-backend # ensure the 'go-licenses' make target runs | ||
check_backend: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
- name: setup go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '>=1.20' | ||
- name: deps-backend | ||
run: make deps-backend deps-tools | ||
- name: checks backend | ||
run: make --always-make checks-backend # ensure the 'go-licenses' make target runs | ||
frontend: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
- name: setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- name: deps-frontend | ||
run: make deps-frontend | ||
- name: lint frontend | ||
run: make lint-frontend | ||
- name: checks frontend | ||
run: make checks-frontend | ||
- name: test frontend | ||
run: make test-frontend | ||
backend: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
- name: setup go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '>=1.20' | ||
- name: setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- name: deps-backend | ||
run: make deps-backend deps-tools | ||
- name: deps-frontend | ||
run: make deps-frontend | ||
- name: build frontend | ||
run: make frontend | ||
- name: build-backend-no-gcc | ||
run: go build -o gitea_no_gcc # test if build succeeds without the sqlite tag | ||
env: | ||
GOPROXY: https://goproxy.io | ||
- name: build-backend-arm64 | ||
run: make backend # test cross compile | ||
env: | ||
GOPROXY: https://goproxy.io | ||
GOOS: linux | ||
GOARCH: arm64 | ||
TAGS: bindata gogit | ||
- name: build-backend-windows | ||
run: go build -o gitea_windows | ||
env: | ||
GOPROXY: https://goproxy.io | ||
GOOS: windows | ||
GOARCH: amd64 | ||
TAGS: bindata gogit | ||
- name: build-backend-386 | ||
run: go build -o gitea_linux_386 # test if compatible with 32 bit | ||
env: | ||
GOPROXY: https://goproxy.io | ||
GOOS: linux | ||
GOARCH: 386 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Compliance testing for documentation | ||
name: "Pull: Compliance testing for documentation" | ||
|
||
on: | ||
pull_request: | ||
|
Oops, something went wrong.