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.

21 lines
504 B

  1. before_script:
  2. - echo "Hier lassen sich Aufgaben VOR dem Compilen angeben"
  3. after_script:
  4. - echo "Hier lassen sich Aufgaben NACH dem Compilen angeben"
  5. build1:
  6. stage: build
  7. script:
  8. - ~/pawncc gamemodes/gamemode.pwn -iinclude "-;+" -v2 -d3 -Z+
  9. - cp ./gamemode.amx ~/server/gamemodes
  10. - ~/rcon/rcon -h 127.0.0.1 -P 7777 -p "$RCON_PASSWORD" -c gmx
  11. artifacts:
  12. paths:
  13. - ./gamemode.amx
  14. expire_in: 1 week
  15. #deploy1:
  16. # stage: deploy
  17. # script:
  18. # - echo "Do your deploy here"