diff options
author | Chris Packham <judge.packham@gmail.com> | 2023-08-09 18:18:24 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-08-10 14:01:58 +1200 |
commit | 35676f3a2ca60e7022e3b283b11d9319e5f94238 (patch) | |
tree | b7fe6846ace8c9abb3421120983220221213a1d8 /.github | |
parent | 2ef5c62c6884a1dd7e9600f2a965bb0ea9a077fb (diff) | |
download | crosstool-ng-35676f3a2ca60e7022e3b283b11d9319e5f94238.tar.gz crosstool-ng-35676f3a2ca60e7022e3b283b11d9319e5f94238.tar.bz2 crosstool-ng-35676f3a2ca60e7022e3b283b11d9319e5f94238.zip |
CI: build glibc toolchains without debug symbols
Disable CT_GLIBC_ENABLE_DEBUG to hopefully make the toolchains use less
disk-space on the free-tier github action runners.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-toolchains.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/build-toolchains.yml b/.github/workflows/build-toolchains.yml index 01c06737..b762bf59 100644 --- a/.github/workflows/build-toolchains.yml +++ b/.github/workflows/build-toolchains.yml @@ -91,6 +91,7 @@ jobs: sed -i -e '/CT_LOG_PROGRESS_BAR/s/y$/n/' .config sed -i -e '/CT_LOCAL_TARBALLS_DIR/s/HOME/CT_TOP_DIR/' .config sed -i -e '/CT_PREFIX_DIR/s/HOME/CT_TOP_DIR/' .config + sed -i -e '/CT_GLIBC_ENABLE_DEBUG/s/y$/n/' .config test ${{ matrix.host }} = "macos-latest" && sed -i -e '/CT_GDB_CROSS_PYTHON/s/y$/n/' .config ct-ng build - name: create ${{ matrix.sample }}.${{ matrix.host }} tarball |