Skip to content
Snippets Groups Projects
Commit 82b29bdf authored by Alam Ed Arias's avatar Alam Ed Arias
Browse files

Update .gitlab-ci.yml file

Name the artifacts by project name,branch, then SHA
parent ce760342
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,7 @@ build-x86_64-linux-gnu: ...@@ -60,7 +60,7 @@ build-x86_64-linux-gnu:
artifacts: artifacts:
paths: paths:
- "bin/lsdl2srb2*" - "bin/lsdl2srb2*"
name: "x86-64" name: "$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-x86-64"
script: script:
- *ccache - *ccache
- export CC="x86_64-linux-gnu-gcc" - export CC="x86_64-linux-gnu-gcc"
...@@ -71,7 +71,7 @@ build-i686-w64-mingw32: ...@@ -71,7 +71,7 @@ build-i686-w64-mingw32:
artifacts: artifacts:
paths: paths:
- "bin/srb2win.exe*" - "bin/srb2win.exe*"
name: "Win32" name: "$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-Win32"
script: script:
- *ccache - *ccache
- make --directory=src CCACHE=1 MINGW=1 PREFIX=i686-w64-mingw32 - make --directory=src CCACHE=1 MINGW=1 PREFIX=i686-w64-mingw32
...@@ -81,7 +81,7 @@ build-x86_64-w64-mingw32: ...@@ -81,7 +81,7 @@ build-x86_64-w64-mingw32:
artifacts: artifacts:
paths: paths:
- "bin/srb2win64.exe*" - "bin/srb2win64.exe*"
name: "Win64" name: "$CI_PROJECT_PATH_SLUG-$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA-Win64"
script: script:
- *ccache - *ccache
- make --directory=src CCACHE=1 MINGW64=1 PREFIX=x86_64-w64-mingw32 - make --directory=src CCACHE=1 MINGW64=1 PREFIX=x86_64-w64-mingw32
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment