diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2880b98b5b..866d419b59 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,6 @@ # DESCRIPTION: GitLab CI/CD for libRetro (NOT FOR GitLab-proper) # -# Builds yaps2_libretro.so on the libretro buildbot (git.libretro.com mirror) +# Builds armsx2_libretro.so on the libretro buildbot (git.libretro.com mirror) # for Linux x86_64 and aarch64. Inert on GitHub — the GitHub Actions # workflows under .github/workflows/ are the project's own CI. # @@ -17,7 +17,7 @@ .core-defs: variables: GIT_SUBMODULE_STRATEGY: recursive - CORENAME: yaps2 + CORENAME: armsx2 # The core is emitted in the pcsx2-libretro/ subdirectory of the build # tree; the ci-templates pick it up from $BUILD_DIR/$EXTRA_PATH/. EXTRA_PATH: pcsx2-libretro diff --git a/pcsx2-libretro/CMakeLists.txt b/pcsx2-libretro/CMakeLists.txt index 804ba3db04..443dbfb9e2 100644 --- a/pcsx2-libretro/CMakeLists.txt +++ b/pcsx2-libretro/CMakeLists.txt @@ -43,5 +43,5 @@ endif() # The libretro buildbot's ci-templates build the target named # _libretro (see .gitlab-ci.yml). -add_custom_target(yaps2_libretro) -add_dependencies(yaps2_libretro pcsx2-libretro) +add_custom_target(armsx2_libretro) +add_dependencies(armsx2_libretro pcsx2-libretro)