Skip to content

Commit 97e18cc

Browse files
authored
Merge pull request #872 from nasa/draco-integration
Draco integration candidate, part 2
2 parents b6c2a75 + df46870 commit 97e18cc

File tree

12 files changed

+51
-141
lines changed

12 files changed

+51
-141
lines changed

.github/workflows/build-cfs-deprecated.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,15 @@ name: Build, Test, and Run [OMIT_DEPRECATED = false]
33
# Run every time a new commit pushed or for pull requests
44
on:
55
push:
6+
branches:
7+
- dev
8+
- main
69
pull_request:
10+
types:
11+
- opened
12+
- reopened
13+
- synchronize
14+
workflow_dispatch:
715

816
env:
917
SIMULATION: native
@@ -186,7 +194,7 @@ jobs:
186194
sleep 10
187195
../host/cmdUtil --pktid=0x1806 --cmdcode=17 --endian=LE --uint32=3 --uint32=0x40000000
188196
../host/cmdUtil --pktid=0x1806 --cmdcode=14 --endian=LE --uint32=2
189-
../host/cmdUtil --pktid=0x1806 --cmdcode=4 --endian=LE --string="20:CFE_TEST_APP" --string="20:CFE_TestMain" --string="64:cfe_testcase" --uint32=16384 --uint8=0 --uint8=0 --uint16=100
197+
../host/cmdUtil --pktid=0x1806 --cmdcode=4 --endian=LE --string="20:CFE_TEST" --string="20:CFE_TestMain" --string="64:cfe_testcase" --uint64=16384 --uint8=0 --uint8=0 --uint16=100 --uint32=0
190198
sleep 30
191199
counter=0
192200
while [[ ! -f cf/cfe_test.log ]]; do

.github/workflows/build-cfs-rtems4.11.yml

Lines changed: 0 additions & 132 deletions
This file was deleted.

.github/workflows/build-cfs-rtems5.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,15 @@ name: Build and Test rtems 5 [OMIT_DEPRECATED=true]
33
# Run every time a new commit pushed or for pull requests
44
on:
55
push:
6+
branches:
7+
- dev
8+
- main
69
pull_request:
10+
types:
11+
- opened
12+
- reopened
13+
- synchronize
14+
workflow_dispatch:
715

816
env:
917
OMIT_DEPRECATED: true

.github/workflows/build-cfs.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,15 @@ name: Build, Test, and Run [OMIT_DEPRECATED = true]
33
# Run every time a new commit pushed or for pull requests
44
on:
55
push:
6+
branches:
7+
- dev
8+
- main
69
pull_request:
10+
types:
11+
- opened
12+
- reopened
13+
- synchronize
14+
workflow_dispatch:
715

816
env:
917
SIMULATION: native
@@ -184,7 +192,7 @@ jobs:
184192
sleep 10
185193
../host/cmdUtil --pktid=0x1806 --cmdcode=17 --endian=LE --uint32=3 --uint32=0x40000000
186194
../host/cmdUtil --pktid=0x1806 --cmdcode=14 --endian=LE --uint32=2
187-
../host/cmdUtil --pktid=0x1806 --cmdcode=4 --endian=LE --string="20:CFE_TEST_APP" --string="20:CFE_TestMain" --string="64:cfe_testcase" --uint32=16384 --uint8=0 --uint8=0 --uint16=100
195+
../host/cmdUtil --pktid=0x1806 --cmdcode=4 --endian=LE --string="20:CFE_TEST" --string="20:CFE_TestMain" --string="64:cfe_testcase" --uint64=16384 --uint8=0 --uint8=0 --uint16=100 --uint32=0
188196
sleep 30
189197
counter=0
190198
while [[ ! -f cf/cfe_test.log ]]; do

.github/workflows/build-documentation.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@ name: cFS Documentation and Guides
22

33
on:
44
push:
5+
branches:
6+
- dev
7+
- main
58
pull_request:
9+
types:
10+
- opened
11+
- reopened
12+
- synchronize
13+
workflow_dispatch:
614

715
# Force bash to apply pipefail option so pipeline failures aren't masked
816
defaults:

.github/workflows/codeql-analysis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@ name: "CodeQL Analysis: cFS-Bundle"
22

33
on:
44
push:
5+
branches:
6+
- dev
7+
- main
58
pull_request:
9+
types:
10+
- opened
11+
- reopened
12+
- synchronize
13+
workflow_dispatch:
614

715
jobs:
816
codeql:

.github/workflows/format-check.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ name: Format Check
22

33
# Run on all push and pull requests
44
on:
5-
push:
65
pull_request:
7-
workflow_call:
6+
types:
7+
- opened
8+
- reopened
9+
- synchronize
810

911
# Force bash to apply pipefail option so pipeline failures aren't masked
1012
defaults:

apps/sample_app

Submodule sample_app updated 59 files

0 commit comments

Comments
 (0)