Add Nintendo Switch support (including gitlab-ci, gitlab-pages etc.)

This commit is contained in:
Romain Graillot
2019-04-28 10:47:54 +02:00
parent 5d9aa6f969
commit d36e59ca9c
21 changed files with 607 additions and 7 deletions

View File

@@ -93,3 +93,19 @@ job_gp2x:
paths:
- "*.zip"
- "GP2X_JOB_ID"
job_switch:
stage: build
before_script:
- apt-get update -qq && apt-get install -y -qq zip
- "sh ./.install-switch-toolchain.sh"
- "source /etc/profile.d/devkit-env.sh"
script:
- "SWITCH=1 make -j2 grafx2"
- "SWITCH=1 make ziprelease"
after_script:
- "echo $CI_JOB_ID > SWITCH_JOB_ID"
artifacts:
paths:
- "*.zip"
- "SWITCH_JOB_ID"