From d56c8a749856a805cfaa1e7fc6d60334017c5af4 Mon Sep 17 00:00:00 2001 From: Donghak PARK Date: Fri, 23 Aug 2024 12:00:15 +0900 Subject: [PATCH] [CI] Fix meson ubuntu ci build Fix build bug - Currently, there is a bug in the matrix used in CI where the first Meson build runs successfully but subsequent builds fail due to the presence of a 'build' folder. I would like to fix this issue. - Before running the Meson build, ensure that any existing folders named 'build' are deleted. - fix gcc version to 13 Resolves: - #2715 **Self evaluation:** 1. Build test: [X]Passed [ ]Failed [ ]Skipped 2. Run test: [X]Passed [ ]Failed [ ]Skipped Signed-off-by: Donghak PARK Co-authored-by: hyeonseok Co-authored-by: Donghyeon Jeong --- .github/workflows/ubuntu_clean_meson_build.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ubuntu_clean_meson_build.yml b/.github/workflows/ubuntu_clean_meson_build.yml index 957c6c9eed..71892cd772 100644 --- a/.github/workflows/ubuntu_clean_meson_build.yml +++ b/.github/workflows/ubuntu_clean_meson_build.yml @@ -25,11 +25,18 @@ jobs: run: sudo apt-get update && sudo apt-get install -y gcc g++ pkg-config libopenblas-dev libiniparser-dev libjsoncpp-dev libcurl3-dev tensorflow2-lite-dev nnstreamer-dev libglib2.0-dev libgstreamer1.0-dev libgtest-dev ml-api-common-dev flatbuffers-compiler ml-inference-api-dev libunwind-dev - name: install additional packages for features run: sudo apt-get install -y python3-dev python3-numpy python3 + - name: gcc version change + run: | + sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa + sudo apt-get install build-essential + sudo apt-get install gcc-13 g++-13 + sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 1000 + sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 1000 + sudo update-alternatives --set gcc /usr/bin/gcc-13 + - name: check gcc version + run: gcc --version - name: install build systems run: sudo apt install meson ninja-build - - run: meson setup build/ - env: - CC: gcc - run: | meson \ --buildtype=plain \