mirror of
https://github.com/italicsjenga/slang-shaders.git
synced 2024-11-21 23:31:30 +11:00
Add .gitlab-ci.yml file
This commit is contained in:
parent
59ffdd7133
commit
214826c88e
20
.gitlab-ci.yml
Normal file
20
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
stages:
|
||||||
|
- package
|
||||||
|
|
||||||
|
.package-base:
|
||||||
|
image: $CI_SERVER_HOST:5050/libretro-infrastructure/libretro-build-amd64-ubuntu:latest
|
||||||
|
stage: package
|
||||||
|
variables:
|
||||||
|
MEDIA_PATH: .media
|
||||||
|
before_script:
|
||||||
|
- rm -fr configure Makefile .git*
|
||||||
|
script:
|
||||||
|
- mkdir -p ${MEDIA_PATH}/${CI_PROJECT_NAME}
|
||||||
|
- cp -R ./* ${MEDIA_PATH}/${CI_PROJECT_NAME}
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- ${MEDIA_PATH}
|
||||||
|
expire_in: 1 day
|
||||||
|
|
||||||
|
libretro-package-any:
|
||||||
|
extends: .package-base
|
Loading…
Reference in a new issue