mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-19 18:15:50 +00:00
Compare commits
5 Commits
fix-online
...
niq-xahau-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4202d1993d | ||
|
|
1eb1d09e18 | ||
|
|
f25593546f | ||
|
|
834f310082 | ||
|
|
1255ea7a01 |
1
.github/actions/xahau-ga-build/action.yml
vendored
1
.github/actions/xahau-ga-build/action.yml
vendored
@@ -59,7 +59,6 @@ runs:
|
|||||||
${{ runner.os }}-ccache-v${{ inputs.cache_version }}-${{ inputs.compiler-id }}-${{ inputs.configuration }}-${{ inputs.main_branch }}
|
${{ runner.os }}-ccache-v${{ inputs.cache_version }}-${{ inputs.compiler-id }}-${{ inputs.configuration }}-${{ inputs.main_branch }}
|
||||||
${{ runner.os }}-ccache-v${{ inputs.cache_version }}-${{ inputs.compiler-id }}-${{ inputs.configuration }}-
|
${{ runner.os }}-ccache-v${{ inputs.cache_version }}-${{ inputs.compiler-id }}-${{ inputs.configuration }}-
|
||||||
${{ runner.os }}-ccache-v${{ inputs.cache_version }}-${{ inputs.compiler-id }}-
|
${{ runner.os }}-ccache-v${{ inputs.cache_version }}-${{ inputs.compiler-id }}-
|
||||||
${{ runner.os }}-ccache-v${{ inputs.cache_version }}-
|
|
||||||
|
|
||||||
- name: Configure project
|
- name: Configure project
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
@@ -54,7 +54,6 @@ runs:
|
|||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-conan-v${{ inputs.cache_version }}-${{ inputs.compiler-id }}-${{ hashFiles('**/conanfile.txt', '**/conanfile.py') }}-
|
${{ runner.os }}-conan-v${{ inputs.cache_version }}-${{ inputs.compiler-id }}-${{ hashFiles('**/conanfile.txt', '**/conanfile.py') }}-
|
||||||
${{ runner.os }}-conan-v${{ inputs.cache_version }}-${{ inputs.compiler-id }}-
|
${{ runner.os }}-conan-v${{ inputs.cache_version }}-${{ inputs.compiler-id }}-
|
||||||
${{ runner.os }}-conan-v${{ inputs.cache_version }}-
|
|
||||||
|
|
||||||
- name: Export custom recipes
|
- name: Export custom recipes
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
19
.github/workflows/xahau-ga-nix.yml
vendored
19
.github/workflows/xahau-ga-nix.yml
vendored
@@ -22,13 +22,14 @@ jobs:
|
|||||||
configuration: [Debug]
|
configuration: [Debug]
|
||||||
include:
|
include:
|
||||||
- compiler: gcc
|
- compiler: gcc
|
||||||
cc: gcc-11
|
cc: gcc-13
|
||||||
cxx: g++-11
|
cxx: g++-13
|
||||||
compiler_id: gcc-11
|
compiler_id: gcc-13
|
||||||
|
compiler_version: 13
|
||||||
env:
|
env:
|
||||||
build_dir: .build
|
build_dir: .build
|
||||||
# Bump this number to invalidate all caches globally.
|
# Bump this number to invalidate all caches globally.
|
||||||
CACHE_VERSION: 1
|
CACHE_VERSION: 2
|
||||||
MAIN_BRANCH_NAME: dev
|
MAIN_BRANCH_NAME: dev
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
@@ -58,12 +59,8 @@ jobs:
|
|||||||
conan profile update env.CXX=/usr/bin/${{ matrix.cxx }} default
|
conan profile update env.CXX=/usr/bin/${{ matrix.cxx }} default
|
||||||
conan profile update conf.tools.build:compiler_executables='{"c": "/usr/bin/${{ matrix.cc }}", "cpp": "/usr/bin/${{ matrix.cxx }}"}' default
|
conan profile update conf.tools.build:compiler_executables='{"c": "/usr/bin/${{ matrix.cc }}", "cpp": "/usr/bin/${{ matrix.cxx }}"}' default
|
||||||
|
|
||||||
# Set correct compiler version based on matrix.compiler
|
# Set compiler version from matrix
|
||||||
if [ "${{ matrix.compiler }}" = "gcc" ]; then
|
conan profile update settings.compiler.version=${{ matrix.compiler_version }} default
|
||||||
conan profile update settings.compiler.version=11 default
|
|
||||||
elif [ "${{ matrix.compiler }}" = "clang" ]; then
|
|
||||||
conan profile update settings.compiler.version=14 default
|
|
||||||
fi
|
|
||||||
# Display profile for verification
|
# Display profile for verification
|
||||||
conan profile show default
|
conan profile show default
|
||||||
|
|
||||||
@@ -120,4 +117,4 @@ jobs:
|
|||||||
else
|
else
|
||||||
echo "Error: rippled executable not found in ${{ env.build_dir }}"
|
echo "Error: rippled executable not found in ${{ env.build_dir }}"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
#include <cstdint>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <set>
|
#include <set>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|||||||
@@ -321,7 +321,7 @@ public:
|
|||||||
HSFEE,
|
HSFEE,
|
||||||
ter(temMALFORMED));
|
ter(temMALFORMED));
|
||||||
|
|
||||||
env(ripple::test::jtx::hook(alice, {{}}, 0),
|
env(ripple::test::jtx::hook(alice, std::vector<Json::Value>{}, 0),
|
||||||
M("Must have a non-empty hooks field"),
|
M("Must have a non-empty hooks field"),
|
||||||
HSFEE,
|
HSFEE,
|
||||||
ter(temMALFORMED));
|
ter(temMALFORMED));
|
||||||
|
|||||||
Reference in New Issue
Block a user