-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Use Actions for DB & E2E tests #24494
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
eb58c06
Use Actions for tests
techknowlogick 09fbd35
Update pull-db_test.yml
techknowlogick 0e9eecf
Update .github/workflows/pull-compliance.yml
techknowlogick f09f6ba
Update .github/workflows/pull-compliance.yml
techknowlogick 55fdca2
rm fail fast which is set by default
techknowlogick d441014
Update .github/workflows/pull-e2e.yml
techknowlogick bee2d02
Merge branch 'main' into pr-db-tests
techknowlogick 3106354
Merge branch 'main' into pr-db-tests
techknowlogick f09e7ec
Merge branch 'main' into pr-db-tests
GiteaBot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 | ||
techknowlogick marked this conversation as resolved.
Show resolved
Hide resolved
|
||
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 | ||
techknowlogick marked this conversation as resolved.
Show resolved
Hide resolved
|
||
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 | ||
techknowlogick marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.