diff options
author | Chris Packham <judge.packham@gmail.com> | 2022-07-26 14:31:54 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2022-07-27 20:16:48 +1200 |
commit | 0100c9b21863aa917b90f77af823978bb0bb7130 (patch) | |
tree | fbc2e53d8ff83b2e6f1cacd0b3c2077c75c1f742 /.github | |
parent | 04b0c0fb7871fbd5533895455d851c9b03906fb6 (diff) | |
download | crosstool-ng-0100c9b21863aa917b90f77af823978bb0bb7130.tar.gz crosstool-ng-0100c9b21863aa917b90f77af823978bb0bb7130.tar.bz2 crosstool-ng-0100c9b21863aa917b90f77af823978bb0bb7130.zip |
CI: Add fetch mingw sources
Add x86_64-w64-mingw32 to the list of samples we use to fetch sources.
This should pick up the mingw related tarballs so the build steps that
follow don't have to.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/continuous-integration-workflow.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index fe7da0fb..138fc807 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -69,7 +69,8 @@ jobs: run: | mkdir -p src for sample in aarch64-unknown-linux-gnu arm-picolibc-eabi \ - arm-unknown-linux-musleabi armv6-nommu-linux-uclibcgnueabi; do \ + arm-unknown-linux-musleabi armv6-nommu-linux-uclibcgnueabi \ + x86_64-w64-mingw32; do \ ct-ng $sample; \ sed -i -e '/CT_LOG_PROGRESS_BAR/s/y$/n/' .config; \ sed -i -e '/CT_LOCAL_TARBALLS_DIR/s/HOME/CT_TOP_DIR/' .config; \ |