SAMP Gitlab CI Test
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
350 B

  1. before_script:
  2. - echo "Before script section"
  3. after_script:
  4. - echo "After script section"
  5. build1:
  6. stage: build
  7. script:
  8. - echo "Do your build here"
  9. - ls -la gamemodes
  10. - ls -la ~/pawncc
  11. - echo $PWD && ~/pawncc gamemodes/bare.pwn -iinclude "-;+" -v2 -d3 -Z+
  12. deploy1:
  13. stage: deploy
  14. script:
  15. - echo "Do your deploy here"