-
Notifications
You must be signed in to change notification settings - Fork 27
133 lines (128 loc) · 3.78 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
name: 'CI'
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
# lint: disabled as golangci-lint is not yet ready for Go workspaces
test:
runs-on: ${{ matrix.os }}
permissions:
checks: write
pull-requests: write
actions: read
contents: write
security-events: write
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
cache-dependency-path: "**/*.sum"
go-version-file: go.work
- name: Overwrite tools (to run tests only on gh repo)
run: |
touch cdnet/clt.zip tooling/baseline-cli.jar tooling/intellij-report-converter.jar tooling/qodana-fuser.jar
cat > go.work << EOF
go 1.21
use (
./cdnet
./cli
./cloud
./cmd
./core
./platform
./sarif
./tooling
)
EOF
shell: bash
- name: Set up gotestfmt
uses: gotesttools/gotestfmt-action@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- if: ${{ matrix.os == 'ubuntu-latest' }}
uses: docker/login-action@v3
with:
registry: registry.jetbrains.team
username: ${{ secrets.SPACE_USERNAME }}
password: ${{ secrets.SPACE_PASSWORD }}
- name: Run tests (with coverage)
if: ${{ matrix.os != 'windows-latest' }}
run: |
set -euo pipefail
go test -json -v $(go list -f '{{.Dir}}/...' -m | xargs) -coverprofile coverage-${{ matrix.os }}.out 2>&1 | tee /tmp/gotest.log | gotestfmt
env:
QODANA_LICENSE_ONLY_TOKEN: ${{ secrets.QODANA_LICENSE_ONLY_TOKEN }}
- name: Run tests (with coverage) for Windows
if: ${{ matrix.os == 'windows-latest' }}
run: go test -v $(go list -f '{{.Dir}}/...' -m | ForEach-Object { $_ }) -coverprofile coverage-${{ matrix.os }}.out
env:
QODANA_LICENSE_ONLY_TOKEN: ${{ secrets.QODANA_LICENSE_ONLY_TOKEN }}
code-quality:
runs-on: ubuntu-latest
permissions:
checks: write
pull-requests: write
actions: read
contents: write
security-events: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Overwrite tools (to run tests only on gh repo)
run: |
touch cdnet/clt.zip tooling/baseline-cli.jar tooling/intellij-report-converter.jar tooling/qodana-fuser.jar
cat > go.work << EOF
go 1.21
use (
./cdnet
./cli
./cloud
./cmd
./core
./platform
./sarif
./tooling
)
EOF
shell: bash
- uses: docker/login-action@v3
with:
registry: registry.jetbrains.team
username: ${{ secrets.SPACE_USERNAME }}
password: ${{ secrets.SPACE_PASSWORD }}
- uses: JetBrains/qodana-action@main
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
with:
use-nightly: true
pr-mode: false
upload-result: true
- uses: actions/upload-artifact@v4
with:
name: qodana-artifacts
path: "${{ runner.temp }}/qodana/results"
- uses: github/codeql-action/init@v3
with:
languages: go
- uses: github/codeql-action/autobuild@v3
- uses: github/codeql-action/analyze@v3
# install-script-check:
# strategy:
# fail-fast: false
# matrix:
# os: [ubuntu-latest, macos-latest]
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v4
# - run: |
# ./install
# ./install nightly