-
Notifications
You must be signed in to change notification settings - Fork 33
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
base: develop
Are you sure you want to change the base?
Conversation
.github/workflows/ci.yml
Outdated
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' ' ') |
There was a problem hiding this comment.
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" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
зачем качать самый новый список? почему не качать то, что есть в репозитории в ветке?
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
пресеты - нафиг
There was a problem hiding this comment.
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
- костыль:- перетирает доку
- так нельзя настроить компилятор, линкер, генератор
- так нельзя настроить флаги локально без коммита
No description provided.