Skip to content

Commit

Permalink
2.2.3
Browse files Browse the repository at this point in the history
* fixed transition payload interface
  • Loading branch information
andrew-gresyk authored Feb 6, 2023
1 parent 1859c6a commit eba7650
Show file tree
Hide file tree
Showing 22 changed files with 581 additions and 165 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
2 changes: 1 addition & 1 deletion .github/workflows/cmake-qemu-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
BUILD_CONFIG: [ Release, Debug ]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# install dependencies
- name: Install ARM GCC on ubuntu
Expand Down
39 changes: 28 additions & 11 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,24 @@ jobs:
INSTALL: true
}
- {
OS: ubuntu-18.04,
OS: ubuntu-22.04,
CC: gcc-9,
CXX: g++-9
}
- {
OS: ubuntu-20.04,
OS: ubuntu-22.04,
CC: gcc-10,
CXX: g++-10
}
- {
OS: ubuntu-20.04,
OS: ubuntu-22.04,
CC: gcc-11,
CXX: g++-11,
INSTALL: true
CXX: g++-11
}
- {
OS: ubuntu-22.04,
CC: gcc-12,
CXX: g++-12
}
- {
OS: ubuntu-18.04,
Expand Down Expand Up @@ -101,28 +105,36 @@ jobs:
- {
OS: ubuntu-20.04,
CC: clang-10,
CXX: clang++-10
CXX: clang++-10,
VERSION: '10'
}
- {
OS: ubuntu-20.04,
CC: clang-11,
CXX: clang++-11
CXX: clang++-11,
VERSION: '11'
}
- {
OS: ubuntu-latest,
OS: ubuntu-22.04,
CC: clang-12,
CXX: clang++-12
}
- {
OS: ubuntu-latest,
OS: ubuntu-22.04,
CC: clang-13,
CXX: clang++-13
}
- {
OS: ubuntu-latest,
OS: ubuntu-22.04,
CC: clang-14,
CXX: clang++-14
}
- {
OS: ubuntu-22.04,
CC: clang-15,
CXX: clang++-15,
VERSION: '15'
}
- {
OS: macos-10.15,
CC: clang,
Expand All @@ -133,11 +145,16 @@ jobs:
CC: clang,
CXX: clang++
}
- {
OS: macos-12,
CC: clang,
CXX: clang++
}

BUILD_CONFIG: [ Release, Debug ]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# install dependencies
- name: Install GCC on ubuntu
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ name: "CodeQL"

on:
push:
branches: [ master ]
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
branches: [ "master" ]
schedule:
- cron: '16 12 * * 4'
- cron: '33 17 * * 5'

jobs:
analyze:
Expand All @@ -34,37 +34,43 @@ jobs:
matrix:
language: [ 'cpp', 'python' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support
# Use only 'java' to analyze code written in Java, Kotlin or both
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality


# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language
# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.

#- run: |
# make bootstrap
# make release
# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
4 changes: 2 additions & 2 deletions .github/workflows/flawfinder-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
# The branches below must be a subset of the branches above
branches: [ master ]
schedule:
- cron: '45 8 * * 6'
- cron: '21 21 * * 6'

jobs:
flawfinder:
Expand All @@ -24,7 +24,7 @@ jobs:
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: flawfinder_scan
uses: david-a-wheeler/flawfinder@8e4a779ad59dbfaee5da586aa9210853b701959c
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
BUILD_PLATFORM: [ x86, x64 ]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@master
uses: microsoft/setup-msbuild@main

- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/msvc-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
pull_request:
branches: [ master ]
schedule:
- cron: '41 2 * * 3'
- cron: '22 3 * * 3'

env:
# Path to the CMake build directory.
Expand All @@ -27,7 +27,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Configure CMake
run: cmake -B ${{ env.build }}
Expand All @@ -37,7 +37,7 @@ jobs:
# run: cmake --build ${{ env.build }}

- name: Initialize MSVC Code Analysis
uses: microsoft/msvc-code-analysis-action@04825f6d9e00f87422d6bf04e1a38b1f3ed60d99
uses: microsoft/msvc-code-analysis-action@24c285ab36952c9e9182f4b78dfafbac38a7e5ee
# Provide a unique ID to access the sarif output path
id: run-analysis
with:
Expand Down
4 changes: 0 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
cmake_minimum_required(VERSION 3.5)

LIST(APPEND CMAKE_MODULE_PATH
"${CMAKE_CURRENT_SOURCE_DIR}/CMake/modules")


project(hfsm2_test)

file(GLOB SOURCE_FILES "test/*.cpp" "test/shared/*.cpp")
Expand Down
Loading

0 comments on commit eba7650

Please sign in to comment.