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