From 788fca489a1246806933995d7987dd2e2ca8e1d3 Mon Sep 17 00:00:00 2001 From: badumbatish Date: Sun, 4 Aug 2024 12:43:09 -0700 Subject: [PATCH] Add running cicd 32bit ChangeLog: * .github/workflows/cppp32.yml: New file. --- .github/workflows/ccpp.yml | 612 +++++++++++++++++------------------ .github/workflows/cppp32.yml | 103 ++++++ 2 files changed, 409 insertions(+), 306 deletions(-) create mode 100644 .github/workflows/cppp32.yml diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 57bb4d630226..2c6837c0419e 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -1,306 +1,306 @@ -name: GCC Rust build and test - -on: - push: - branches: - - trying - - staging - pull_request: - branches: [ master ] - merge_group: - -env: - ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true - -jobs: - build-and-check-ubuntu-64bit: - - env: - # Force locale, in particular for reproducible results re '.github/bors_log_expected_warnings' (see below). - LC_ALL: C.UTF-8 - - runs-on: ubuntu-22.04 - - steps: - - uses: actions/checkout@v3 - - - name: Install Deps - run: | - sudo apt-get update; - sudo apt-get install -y \ - automake \ - autoconf \ - libtool \ - autogen \ - bison \ - flex \ - libgmp3-dev \ - libmpfr-dev \ - libmpc-dev \ - build-essential \ - gcc-multilib \ - g++-multilib \ - dejagnu; - # install Rust directly using rustup - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0; - - - name: Configure - run: | - mkdir -p gccrs-build; - cd gccrs-build; - ../configure \ - --enable-languages=rust \ - --disable-bootstrap \ - --enable-multilib - - - name: Build - shell: bash - run: | - cd gccrs-build; \ - # Add cargo to our path quickly - . "$HOME/.cargo/env"; - make -Otarget -j $(nproc) 2>&1 | tee log - - - name: Check for new warnings - run: | - cd gccrs-build - < log grep 'warning: ' | sort > log_warnings - if diff -U0 ../.github/bors_log_expected_warnings log_warnings; then - : - else - echo 'See .' - exit 1 - fi >&2 - - - name: Run Tests - run: | - cd gccrs-build; \ - make check-rust RUNTESTFLAGS="--target_board=unix\{-m64}" - - name: Archive check-rust results - uses: actions/upload-artifact@v3 - with: - name: check-rust-logs - path: | - gccrs-build/gcc/testsuite/rust/ - - name: Check regressions - run: | - cd gccrs-build; \ - if grep -e "unexpected" -e "unresolved" -e "ERROR:" gcc/testsuite/rust/rust.sum;\ - then \ - echo "::error title=Regression test failed::some tests are not correct"; \ - perl -n ../.github/emit_test_errors.pl < gcc/testsuite/rust/rust.sum; \ - exit 1; \ - else \ - exit 0; \ - fi - - build-and-check-ubuntu-32bit: - - env: - # Force locale, in particular for reproducible results re '.github/bors_log_expected_warnings' (see below). - LC_ALL: C.UTF-8 - - runs-on: ubuntu-22.04 - - steps: - - uses: actions/checkout@v3 - - - name: Install Deps - run: | - sudo apt-get update; - sudo apt-get install -y \ - automake \ - autoconf \ - libtool \ - autogen \ - bison \ - flex \ - libgmp3-dev \ - libmpfr-dev \ - libmpc-dev \ - build-essential \ - gcc-multilib \ - g++-multilib \ - dejagnu; - # install Rust directly using rustup - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0; - - - name: Configure - run: | - mkdir -p gccrs-build; - cd gccrs-build; - ../configure \ - --enable-languages=rust \ - --disable-bootstrap \ - --enable-multilib - - - name: Build - shell: bash - run: | - cd gccrs-build; \ - # Add cargo to our path quickly - . "$HOME/.cargo/env"; - make -Otarget -j $(nproc) 2>&1 | tee log - - - name: Check for new warnings - run: | - cd gccrs-build - < log grep 'warning: ' | sort > log_warnings - if diff -U0 ../.github/bors_log_expected_warnings log_warnings; then - : - else - echo 'See .' - exit 1 - fi >&2 - - - name: Run Tests - run: | - cd gccrs-build; \ - make check-rust RUNTESTFLAGS="--target_board=unix\{-m32}" - - name: Archive check-rust results - uses: actions/upload-artifact@v3 - with: - name: check-rust-logs - path: | - gccrs-build/gcc/testsuite/rust/ - - name: Check regressions - run: | - cd gccrs-build; \ - if grep -e "unexpected" -e "unresolved" -e "ERROR:" gcc/testsuite/rust/rust.sum;\ - then \ - echo "::error title=Regression test failed::some tests are not correct"; \ - perl -n ../.github/emit_test_errors.pl < gcc/testsuite/rust/rust.sum; \ - exit 1; \ - else \ - exit 0; \ - fi - - build-and-check-gcc-48: - - runs-on: ubuntu-22.04 - container: ubuntu:18.04 - env: - # otherwise we hang when installing tzdata - DEBIAN_FRONTEND: noninteractive - steps: - - uses: actions/checkout@v3 - - - name: Install Deps - run: | - apt-get update; - apt-get install -y \ - curl \ - automake \ - autoconf \ - libtool \ - autogen \ - bison \ - flex \ - libgmp3-dev \ - libmpfr-dev \ - libmpc-dev \ - build-essential \ - gcc-4.8 \ - g++-4.8 \ - gcc-4.8-multilib \ - g++-4.8-multilib \ - dejagnu; - # install Rust directly using rustup - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0; - - - name: Configure - run: | - mkdir -p gccrs-build; - cd gccrs-build; - ../configure \ - CC='gcc-4.8' \ - CXX='g++-4.8' \ - --enable-languages=rust \ - --disable-bootstrap \ - --enable-multilib - - - name: Build - shell: bash - run: | - # Add cargo to our path quickly - . "$HOME/.cargo/env"; - make -C gccrs-build -j $(nproc) - - - name: Run Tests - run: | - cd gccrs-build; \ - make check-rust RUNTESTFLAGS="--target_board=unix\{-m32,-m64}" - - - name: Archive check-rust results - uses: actions/upload-artifact@v3 - with: - name: check-rust-logs-4.8 - path: | - gccrs-build/gcc/testsuite/rust/ - - - name: Check regressions - run: | - cd gccrs-build; \ - if grep -e "unexpected" -e "unresolved" -e "ERROR:" gcc/testsuite/rust/rust.sum;\ - then \ - echo "::error title=Regression test failed::some tests are not correct"; \ - exit 1; \ - else \ - exit 0; \ - fi - - build-and-check-clang-macos: - - env: - # Force CC/CXX to be explicitly clang to make it clear which compiler is used - CC: clang - CXX: clang++ - - runs-on: macos-13 - - steps: - - uses: actions/checkout@v3 - - - name: Install Deps - run: | - brew install dejagnu mpfr libmpc gmp; - # install Rust directly using rustup - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0; - - - name: Configure - run: | - mkdir -p gccrs-build; - cd gccrs-build; - ../configure \ - --enable-languages=rust \ - --disable-bootstrap \ - --enable-multilib \ - --with-native-system-header-dir=/usr/include \ - --with-sysroot=$(xcrun --show-sdk-path) - - - name: Build - shell: bash - run: | - cd gccrs-build; \ - make -j $(sysctl -n hw.ncpu) 2>&1 | tee log - - - name: Run Tests - run: | - cd gccrs-build; \ - make check-rust - - name: Archive check-rust results - uses: actions/upload-artifact@v3 - with: - name: check-rust-logs-macos - path: | - gccrs-build/gcc/testsuite/rust/ - - name: Check regressions - run: | - cd gccrs-build; \ - if grep -e "unexpected" -e "unresolved" -e "ERROR:" gcc/testsuite/rust/rust.sum;\ - then \ - echo "::error title=Regression test failed::some tests are not correct"; \ - exit 1; \ - else \ - exit 0; \ - fi +# name: GCC Rust build and test +# +# on: +# push: +# branches: +# - trying +# - staging +# pull_request: +# branches: [ master ] +# merge_group: +# +# env: +# ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true +# +# jobs: +# build-and-check-ubuntu-64bit: +# +# env: +# # Force locale, in particular for reproducible results re '.github/bors_log_expected_warnings' (see below). +# LC_ALL: C.UTF-8 +# +# runs-on: ubuntu-22.04 +# +# steps: +# - uses: actions/checkout@v3 +# +# - name: Install Deps +# run: | +# sudo apt-get update; +# sudo apt-get install -y \ +# automake \ +# autoconf \ +# libtool \ +# autogen \ +# bison \ +# flex \ +# libgmp3-dev \ +# libmpfr-dev \ +# libmpc-dev \ +# build-essential \ +# gcc-multilib \ +# g++-multilib \ +# dejagnu; +# # install Rust directly using rustup +# curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0; +# +# - name: Configure +# run: | +# mkdir -p gccrs-build; +# cd gccrs-build; +# ../configure \ +# --enable-languages=rust \ +# --disable-bootstrap \ +# --enable-multilib +# +# - name: Build +# shell: bash +# run: | +# cd gccrs-build; \ +# # Add cargo to our path quickly +# . "$HOME/.cargo/env"; +# make -Otarget -j $(nproc) 2>&1 | tee log +# +# - name: Check for new warnings +# run: | +# cd gccrs-build +# < log grep 'warning: ' | sort > log_warnings +# if diff -U0 ../.github/bors_log_expected_warnings log_warnings; then +# : +# else +# echo 'See .' +# exit 1 +# fi >&2 +# +# - name: Run Tests +# run: | +# cd gccrs-build; \ +# make check-rust RUNTESTFLAGS="--target_board=unix\{-m64}" +# - name: Archive check-rust results +# uses: actions/upload-artifact@v3 +# with: +# name: check-rust-logs +# path: | +# gccrs-build/gcc/testsuite/rust/ +# - name: Check regressions +# run: | +# cd gccrs-build; \ +# if grep -e "unexpected" -e "unresolved" -e "ERROR:" gcc/testsuite/rust/rust.sum;\ +# then \ +# echo "::error title=Regression test failed::some tests are not correct"; \ +# perl -n ../.github/emit_test_errors.pl < gcc/testsuite/rust/rust.sum; \ +# exit 1; \ +# else \ +# exit 0; \ +# fi +# +# build-and-check-ubuntu-32bit: +# +# env: +# # Force locale, in particular for reproducible results re '.github/bors_log_expected_warnings' (see below). +# LC_ALL: C.UTF-8 +# +# runs-on: ubuntu-22.04 +# +# steps: +# - uses: actions/checkout@v3 +# +# - name: Install Deps +# run: | +# sudo apt-get update; +# sudo apt-get install -y \ +# automake \ +# autoconf \ +# libtool \ +# autogen \ +# bison \ +# flex \ +# libgmp3-dev \ +# libmpfr-dev \ +# libmpc-dev \ +# build-essential \ +# gcc-multilib \ +# g++-multilib \ +# dejagnu; +# # install Rust directly using rustup +# curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0; +# +# - name: Configure +# run: | +# mkdir -p gccrs-build; +# cd gccrs-build; +# ../configure \ +# --enable-languages=rust \ +# --disable-bootstrap \ +# --enable-multilib +# +# - name: Build +# shell: bash +# run: | +# cd gccrs-build; \ +# # Add cargo to our path quickly +# . "$HOME/.cargo/env"; +# make -Otarget -j $(nproc) 2>&1 | tee log +# +# - name: Check for new warnings +# run: | +# cd gccrs-build +# < log grep 'warning: ' | sort > log_warnings +# if diff -U0 ../.github/bors_log_expected_warnings log_warnings; then +# : +# else +# echo 'See .' +# exit 1 +# fi >&2 +# +# - name: Run Tests +# run: | +# cd gccrs-build; \ +# make check-rust RUNTESTFLAGS="--target_board=unix\{-m32}" +# - name: Archive check-rust results +# uses: actions/upload-artifact@v3 +# with: +# name: check-rust-logs +# path: | +# gccrs-build/gcc/testsuite/rust/ +# - name: Check regressions +# run: | +# cd gccrs-build; \ +# if grep -e "unexpected" -e "unresolved" -e "ERROR:" gcc/testsuite/rust/rust.sum;\ +# then \ +# echo "::error title=Regression test failed::some tests are not correct"; \ +# perl -n ../.github/emit_test_errors.pl < gcc/testsuite/rust/rust.sum; \ +# exit 1; \ +# else \ +# exit 0; \ +# fi +# +# build-and-check-gcc-48: +# +# runs-on: ubuntu-22.04 +# container: ubuntu:18.04 +# env: +# # otherwise we hang when installing tzdata +# DEBIAN_FRONTEND: noninteractive +# steps: +# - uses: actions/checkout@v3 +# +# - name: Install Deps +# run: | +# apt-get update; +# apt-get install -y \ +# curl \ +# automake \ +# autoconf \ +# libtool \ +# autogen \ +# bison \ +# flex \ +# libgmp3-dev \ +# libmpfr-dev \ +# libmpc-dev \ +# build-essential \ +# gcc-4.8 \ +# g++-4.8 \ +# gcc-4.8-multilib \ +# g++-4.8-multilib \ +# dejagnu; +# # install Rust directly using rustup +# curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0; +# +# - name: Configure +# run: | +# mkdir -p gccrs-build; +# cd gccrs-build; +# ../configure \ +# CC='gcc-4.8' \ +# CXX='g++-4.8' \ +# --enable-languages=rust \ +# --disable-bootstrap \ +# --enable-multilib +# +# - name: Build +# shell: bash +# run: | +# # Add cargo to our path quickly +# . "$HOME/.cargo/env"; +# make -C gccrs-build -j $(nproc) +# +# - name: Run Tests +# run: | +# cd gccrs-build; \ +# make check-rust RUNTESTFLAGS="--target_board=unix\{-m32,-m64}" +# +# - name: Archive check-rust results +# uses: actions/upload-artifact@v3 +# with: +# name: check-rust-logs-4.8 +# path: | +# gccrs-build/gcc/testsuite/rust/ +# +# - name: Check regressions +# run: | +# cd gccrs-build; \ +# if grep -e "unexpected" -e "unresolved" -e "ERROR:" gcc/testsuite/rust/rust.sum;\ +# then \ +# echo "::error title=Regression test failed::some tests are not correct"; \ +# exit 1; \ +# else \ +# exit 0; \ +# fi +# +# build-and-check-clang-macos: +# +# env: +# # Force CC/CXX to be explicitly clang to make it clear which compiler is used +# CC: clang +# CXX: clang++ +# +# runs-on: macos-13 +# +# steps: +# - uses: actions/checkout@v3 +# +# - name: Install Deps +# run: | +# brew install dejagnu mpfr libmpc gmp; +# # install Rust directly using rustup +# curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0; +# +# - name: Configure +# run: | +# mkdir -p gccrs-build; +# cd gccrs-build; +# ../configure \ +# --enable-languages=rust \ +# --disable-bootstrap \ +# --enable-multilib \ +# --with-native-system-header-dir=/usr/include \ +# --with-sysroot=$(xcrun --show-sdk-path) +# +# - name: Build +# shell: bash +# run: | +# cd gccrs-build; \ +# make -j $(sysctl -n hw.ncpu) 2>&1 | tee log +# +# - name: Run Tests +# run: | +# cd gccrs-build; \ +# make check-rust +# - name: Archive check-rust results +# uses: actions/upload-artifact@v3 +# with: +# name: check-rust-logs-macos +# path: | +# gccrs-build/gcc/testsuite/rust/ +# - name: Check regressions +# run: | +# cd gccrs-build; \ +# if grep -e "unexpected" -e "unresolved" -e "ERROR:" gcc/testsuite/rust/rust.sum;\ +# then \ +# echo "::error title=Regression test failed::some tests are not correct"; \ +# exit 1; \ +# else \ +# exit 0; \ +# fi diff --git a/.github/workflows/cppp32.yml b/.github/workflows/cppp32.yml new file mode 100644 index 000000000000..35576059c9a1 --- /dev/null +++ b/.github/workflows/cppp32.yml @@ -0,0 +1,103 @@ +name: GCC Rust build and test + +on: + push: + branches: + - trying + - staging + pull_request: + branches: [ master ] + merge_group: + +env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true + +jobs: + build-alpine-32bit-and-check-alpine-32bit: + + env: + # Force locale, in particular for reproducible results re '.github/bors_log_expected_warnings' (see below). + LC_ALL: C.UTF-8 + + runs-on: ubuntu-22.04 + + steps: + - uses: actions/checkout@v3 + - name: Setup Alpine Linux (32-bit) + uses: jirutka/setup-alpine@v1 + with: + arch: x86 + packages: > + automake + autoconf + libtool + bison + flex + gmp-dev + mpfr-dev + mpc1-dev + build-base + dejagnu + curl + - name: Install Rust + run: | + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0 --target i686-unknown-linux-musl + - name: Install dependencies with gcc + run: | + ./contrib/download_prerequisites + - name: Configure + run: | + mkdir -p gccrs-build; + cd gccrs-build; + ../configure \ + --enable-languages=rust \ + --disable-bootstrap \ + --disable-multilib # Try to disable multilib on alpine https://github.com/conan-io/conan/issues/14307#issuecomment-1652433132 + + - name: Build + shell: bash + run: | + cd gccrs-build; \ + # Add cargo to our path quickly + . "$HOME/.cargo/env"; + make -Otarget -j $(nproc) 2>&1 | tee log + - name: Archive the build log + uses: actions/upload-artifact@v3 + with: + # Store it now since the log is too big for github actions to display on web ui + name: gccrs-build-log + path: gccrs-build/log + + - name: Check for new warnings + run: | + cd gccrs-build + < log grep 'warning: ' | sort > log_warnings + if diff -U0 ../.github/bors_log_expected_warnings log_warnings; then + : + else + echo 'See .' + exit 1 + fi >&2 + + - name: Run Tests + run: | + cd gccrs-build; \ + make check-rust RUNTESTFLAGS="--target_board=unix\{-m32}" + - name: Archive check-rust results + uses: actions/upload-artifact@v3 + with: + name: check-rust-logs + path: | + gccrs-build/gcc/testsuite/rust/ + - name: Check regressions + run: | + cd gccrs-build; \ + if grep -e "unexpected" -e "unresolved" -e "ERROR:" gcc/testsuite/rust/rust.sum;\ + then \ + echo "::error title=Regression test failed::some tests are not correct"; \ + perl -n ../.github/emit_test_errors.pl < gcc/testsuite/rust/rust.sum; \ + exit 1; \ + else \ + exit 0; \ + fi +