Compare commits
4 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
9f6fc4f376 | |
|
|
dcef24b3e7 | |
|
|
fa10aa531f | |
|
|
3089f45fef |
|
|
@ -65,8 +65,13 @@ jobs:
|
||||||
cmake --workflow --preset ci
|
cmake --workflow --preset ci
|
||||||
pass:
|
pass:
|
||||||
name: Pass
|
name: Pass
|
||||||
needs: [checks, build-and-test]
|
if: always()
|
||||||
|
needs:
|
||||||
|
- checks
|
||||||
|
- build-and-test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Placeholder
|
- name: Decide whether the needed jobs succeeded or failed
|
||||||
run: true
|
uses: re-actors/alls-green@release/v1
|
||||||
|
with:
|
||||||
|
jobs: ${{ toJSON(needs) }}
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,6 @@ struct DeleteOption;
|
||||||
struct ExecOption;
|
struct ExecOption;
|
||||||
struct KillOption;
|
struct KillOption;
|
||||||
struct ListOption;
|
struct ListOption;
|
||||||
class Signal;
|
|
||||||
struct StartOption;
|
struct StartOption;
|
||||||
struct StateOption;
|
struct StateOption;
|
||||||
struct GlobalOption;
|
struct GlobalOption;
|
||||||
|
|
|
||||||
|
|
@ -2,11 +2,7 @@
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
namespace ocppi::runtime
|
namespace ocppi::runtime {
|
||||||
{
|
|
||||||
|
|
||||||
class Signal : public std::string {
|
|
||||||
using std::string::string;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
using Signal = std::string;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@
|
||||||
#include "ocppi/runtime/DeleteOption.hpp"
|
#include "ocppi/runtime/DeleteOption.hpp"
|
||||||
#include "ocppi/runtime/FeaturesOption.hpp"
|
#include "ocppi/runtime/FeaturesOption.hpp"
|
||||||
#include "ocppi/runtime/KillOption.hpp"
|
#include "ocppi/runtime/KillOption.hpp"
|
||||||
|
#include "ocppi/runtime/Signal.hpp"
|
||||||
#include "ocppi/runtime/StartOption.hpp"
|
#include "ocppi/runtime/StartOption.hpp"
|
||||||
#include "ocppi/runtime/StateOption.hpp"
|
#include "ocppi/runtime/StateOption.hpp"
|
||||||
#include "ocppi/runtime/features/types/Features.hpp"
|
#include "ocppi/runtime/features/types/Features.hpp"
|
||||||
|
|
@ -24,8 +25,6 @@ namespace state::types
|
||||||
struct State;
|
struct State;
|
||||||
}
|
}
|
||||||
|
|
||||||
class Signal;
|
|
||||||
|
|
||||||
class SpecRuntime {
|
class SpecRuntime {
|
||||||
public:
|
public:
|
||||||
SpecRuntime() = default;
|
SpecRuntime() = default;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue