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.

20 lines
449 B

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