Skip to content

Commit c57c3ee

Browse files
committed
need to swap ioc build defaults
1 parent e09586b commit c57c3ee

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci-scripts-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ jobs:
105105
if: matrix.utoolchain
106106
- name: Prepare and compile dependencies
107107
run: python .ci/cue.py prepare
108-
- name: Disable IOC builds for stable
109-
run: echo "BUILD_IOCS = NO" >> configure/CONFIG_SITE.local
110-
if: contains(matrix.set, 'stable')
108+
- name: Enable IOC builds for master
109+
run: echo "BUILD_IOCS = YES" >> configure/CONFIG_SITE.local
110+
if: ${{ !contains(matrix.set, 'stable') }}
111111
- name: Build main module
112112
run: python .ci/cue.py build
113113
- name: Run main module tests

configure/CONFIG_SITE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
MODULE = STD
1313

1414
# Build example IOC applications
15-
BUILD_IOCS = YES
15+
BUILD_IOCS = NO
1616

1717
# CHECK_RELEASE controls the consistency checking of the support
1818
# applications pointed to by the RELEASE* files.

0 commit comments

Comments
 (0)