Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat cmake: add download_userver() and cmake presets #84

Open
wants to merge 11 commits into
base: develop
Choose a base branch
from

Conversation

Anton3
Copy link
Member

@Anton3 Anton3 commented Dec 12, 2024

No description provided.

@Anton3 Anton3 changed the title feat cmake: download userver using CPM unless installed feat cmake: add download_userver() Dec 12, 2024
@Anton3 Anton3 marked this pull request as ready for review December 12, 2024 20:57
@Anton3 Anton3 changed the title feat cmake: add download_userver() feat cmake: add download_userver() and cmake presets Dec 14, 2024
sudo apt update
sudo apt install --allow-downgrades -y $(cat third_party/userver/scripts/docs/en/deps/${{matrix.os}}.md | tr '\n' ' ')
sudo apt install --allow-downgrades -y $(wget -q -O - ${DEPS_FILE} | tr '\n' ' ')
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tr не нужен

@@ -44,9 +44,9 @@ jobs:

- name: Install packages
run: |
(cd third_party && git clone -b develop --single-branch --depth 1 https://github.com/userver-framework/userver.git)
DEPS_FILE="https://raw.githubusercontent.com/userver-framework/userver/refs/heads/develop/scripts/docs/en/deps/${{matrix.os}}.md"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

зачем качать самый новый список? почему не качать то, что есть в репозитории в ветке?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Качаю то, что есть в репозитории (userver) в ветке (develop)

Зачем качать отдельно - потому что чтобы userver скачался через CPM, нужно вначале корректно прогнать cmake для сервиса, а для этого нужно вначале поставить пакеты, а для этого нужно вначале получить список пакетов

Мне не нравится способ, когда мы прогоняем cmake сервиса с ожидаемой ошибкой сборки и смотрим в build-директорию

@@ -13,3 +13,4 @@ cmake-build-*
Testing/
.DS_Store
Makefile.local
CmakeUserPresets.json
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

пресеты - нафиг

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vscode без них не заводится, и за ними будущее, это рекомендуемый бескостыльный способ прописывать флаги сборки

  • Makefile не подцепляется в IDE -> всё красное, нет intellisense
  • set(... FORCE) в CMakeLists.txt - костыль:
    • перетирает доку
    • так нельзя настроить компилятор, линкер, генератор
    • так нельзя настроить флаги локально без коммита

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants