mirror of
https://gitea.com/gitea/runner.git
synced 2026-07-08 16:06:49 +08:00
568f053723
This reverts commit 1ba076d321.
`EraseNeeds` Shouldn't be used in `jobparser.Parse`, it's for https://github.com/go-gitea/gitea/blob/023e61e678dc353fa6c9b0299c37f48e98a3c7af/models/actions/run.go#L200
Or Gitea won't be able to get `Needs` of jobs.
Reviewed-on: https://gitea.com/gitea/act/pulls/32
Reviewed-by: Zettat123 <zettat123@noreply.gitea.io>
26 lines
324 B
YAML
26 lines
324 B
YAML
name: test
|
|
jobs:
|
|
job1:
|
|
name: job1
|
|
runs-on: linux
|
|
steps:
|
|
- run: uname -a
|
|
---
|
|
name: test
|
|
jobs:
|
|
job2:
|
|
name: job2
|
|
needs: job1
|
|
runs-on: linux
|
|
steps:
|
|
- run: uname -a
|
|
---
|
|
name: test
|
|
jobs:
|
|
job3:
|
|
name: job3
|
|
needs: [job1, job2]
|
|
runs-on: linux
|
|
steps:
|
|
- run: uname -a
|