Skip to content

Commit a791461

Browse files
committed
configs: Add common toolchain configuration file
This commit introduces the common toolchain configuration file, common.config, that specifies the crosstool-ng toolchain configurations that are common to all toolchain variants. The configurations in common.config are applied before the configurations in each toolchain configuration file. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent 93a624f commit a791461

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -624,8 +624,9 @@ jobs:
624624
pushd ${WORKSPACE}/build
625625
626626
# Load default target configurations
627-
cp ${GITHUB_WORKSPACE}/configs/${{ matrix.target }}.config \
628-
.config
627+
cat ${GITHUB_WORKSPACE}/configs/common.config \
628+
${GITHUB_WORKSPACE}/configs/${{ matrix.target }}.config \
629+
> .config
629630
630631
# Set version information
631632
cat <<EOF >> .config

configs/common.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Common crosstool-ng configurations for all toolchain variants

0 commit comments

Comments
 (0)