aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/run.sh
Commit message (Collapse)AuthorAgeFilesLines
* run.sh, Makefile: ask golangci-lint to preformat outputTaras Madan2024-02-261-1/+0
|
* ci.yml: run on arc-runner-setTaras Madan2024-02-261-2/+2
|
* .github/workflows: support errors from golangci-lintDmitry Vyukov2020-06-051-0/+1
| | | | | | | | | If there are compilation errors in tests, golangci-lint produces then in the following format: level=warning msg="[runner] Can't run linter unused: buildssa: analysis skipped: errors in package: [/syzkaller/gopath/src/github.com/google/syzkaller/syz-fuzzer/mab_reward_test.go:26:35: cannot use rawCov (variable of type []float64) as float64 value in argument to status.Reward.RawAllTasks.Update /syzkaller/gopath/src/github.com/google/syzkaller/syz-fuzzer/mab_reward_test.go:26:43: cannot use rawTime (variable of type []float64) as float64 value in argument to status.Reward.RawAllTasks.Update /syzkaller/gopath/src/github.com/google/syzkaller/syz-fuzzer/mab_reward_test.go:27:38: cannot use totalReward (variable of type []float64) as float64 value in argument to status.Reward.RewardAllTasks.Update /syzkaller/gopath/src/github.com/google/syzkaller/syz-fuzzer/mab_reward_test.go:33:2: reward declared but not used]" Transform this to github format.
* .github/workflows: support errors without :columnDmitry Vyukov2020-06-051-1/+1
| | | | | | | | Also transform: file.go:line: error message to the github format.
* tools: add syz-big-envDmitry Vyukov2020-06-021-1/+1
| | | | | | | | On top of syz-env it provides akaros/fuchsia/netbsd toolchains and gcloud sdk. With this it's possible to run dashboard/app tests on CI and locally and test executor build and pkg/{csource,cover} for these OSes. Update #1765
* .github/workflows: add CI workflowDmitry Vyukov2020-05-181-0/+11
Switch from Travis to Github Actions for testing. This is faster and is better integrated with github. Update #1699