mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
change db update manifest to header
change build yml
This commit is contained in:
parent
4c7964524d
commit
012c54c277
4
.github/workflows/build.yaml
vendored
4
.github/workflows/build.yaml
vendored
@ -23,7 +23,7 @@ jobs:
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y build-essential ninja-build ccache libmariadb-dev libmariadb-dev-compat libboost-all-dev libperl-dev liblua5.1-0-dev libluajit-5.1-dev zlib1g-dev uuid-dev libssl-dev libsodium-dev libmbedtls-dev
|
||||
sudo apt-get install -y build-essential ninja-build ccache
|
||||
|
||||
- name: Configure
|
||||
run: |
|
||||
@ -74,7 +74,7 @@ jobs:
|
||||
|
||||
- name: Build
|
||||
shell: pwsh
|
||||
run: cmake --build build --config RelWithDebInfo --target ALL_BUILD -- /m
|
||||
run: cmake --build build --parallel --config RelWithDebInfo --target ALL_BUILD -- /m
|
||||
|
||||
- name: Test
|
||||
working-directory: build
|
||||
|
||||
@ -16,9 +16,6 @@ set(common_sources
|
||||
database/database_dump_service.cpp
|
||||
database.cpp
|
||||
database_instances.cpp
|
||||
database/database_update_manifest.cpp
|
||||
database/database_update_manifest_custom.cpp
|
||||
database/database_update_manifest_bots.cpp
|
||||
database/database_update.cpp
|
||||
data_bucket.cpp
|
||||
dbcore.cpp
|
||||
@ -557,6 +554,9 @@ set(common_headers
|
||||
database.h
|
||||
database_schema.h
|
||||
database/database_update.h
|
||||
database/database_update_manifest.h
|
||||
database/database_update_manifest_custom.h
|
||||
database/database_update_manifest_bots.h
|
||||
data_bucket.cpp
|
||||
dbcore.h
|
||||
deity.h
|
||||
|
||||
@ -5,11 +5,10 @@
|
||||
#include "../strings.h"
|
||||
#include "../rulesys.h"
|
||||
#include "../http/httplib.h"
|
||||
|
||||
#include "database_update_manifest.cpp"
|
||||
#include "database_update_manifest_custom.cpp"
|
||||
#include "database_update_manifest_bots.cpp"
|
||||
#include "database_dump_service.h"
|
||||
#include "database_update_manifest.h"
|
||||
#include "database_update_manifest_custom.h"
|
||||
#include "database_update_manifest_bots.h"
|
||||
|
||||
constexpr int BREAK_LENGTH = 70;
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
#include "database_update.h"
|
||||
#pragma once
|
||||
|
||||
std::vector<ManifestEntry> manifest_entries = {
|
||||
ManifestEntry{
|
||||
@ -1,4 +1,4 @@
|
||||
#include "database_update.h"
|
||||
#pragma once
|
||||
|
||||
std::vector<ManifestEntry> bot_manifest_entries = {
|
||||
ManifestEntry{
|
||||
@ -1,4 +1,4 @@
|
||||
#include "database_update.h"
|
||||
#pragma once
|
||||
|
||||
std::vector<ManifestEntry> manifest_entries_custom = {
|
||||
ManifestEntry{
|
||||
Loading…
x
Reference in New Issue
Block a user