Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

28 righe
441 B

  1. kind: pipeline
  2. name: default
  3. workspace:
  4. base: /go
  5. path: src/git.techniknews.net/David/TechnikNews_CI-Test
  6. steps:
  7. - name: test
  8. image: golang
  9. commands:
  10. - go get
  11. - go test
  12. - name: build
  13. image: golang
  14. commands:
  15. - go get
  16. - go build -o output
  17. - chmod +x output
  18. - name: run
  19. image: golang
  20. commands:
  21. - go get
  22. - go build -o output
  23. - chmod +x output
  24. - ./output