forked from chipsalliance/Surelog
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue chipsalliance#3755: Move non-vendored workflow out of main
Move non-vendored workflow out of main and into a separate workflow. Also, run it only for master branch, this is where it matters.
- Loading branch information
1 parent
62baaaa
commit 5738d86
Showing
2 changed files
with
110 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
name: 'non_vendored' | ||
|
||
concurrency: | ||
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
# Linux build and test | ||
linux-install: | ||
name: "Linux | Install | ${{ matrix.compiler }} | ${{ matrix.config }}" | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
compiler: | ||
- gcc | ||
config: | ||
- release | ||
|
||
env: | ||
artifact-name: sl-${{ github.run_number }}-linux-${{ matrix.compiler }}-${{ matrix.config }} | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
# Fetch tags for CMakeLists version check | ||
# https://github.com/actions/checkout/issues/701 | ||
- name: Git fetch tags | ||
run: git fetch --tags origin | ||
|
||
- uses: ./.github/linux-setup | ||
with: | ||
compiler: ${{ matrix.compiler }} | ||
ccache-key: linux-install-${{ matrix.compiler }}-${{ matrix.config }} | ||
|
||
- name: Install vendored dependencies | ||
run: | | ||
git clone https://github.com/google/flatbuffers.git | ||
pushd flatbuffers | ||
cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=17 -DBUILD_SHARED_LIBS=ON . && cmake --build build && sudo cmake --install build | ||
popd | ||
git clone https://github.com/google/googletest.git | ||
pushd googletest | ||
cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=17 -DBUILD_SHARED_LIBS=ON . && cmake --build build && sudo cmake --install build | ||
popd | ||
git clone https://github.com/capnproto/capnproto.git | ||
pushd capnproto | ||
cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=17 -DCMAKE_POSITION_INDEPENDENT_CODE=ON . && cmake --build build && sudo cmake --install build | ||
popd | ||
git clone https://github.com/chipsalliance/UHDM.git | ||
pushd UHDM | ||
cmake -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DUHDM_USE_HOST_GTEST=ON -DUHDM_USE_HOST_CAPNP=ON . && cmake --build build && sudo cmake --install build | ||
popd | ||
sudo mkdir -p /usr/share/java | ||
sudo wget https://www.antlr.org/download/antlr-4.12.0-complete.jar -P /usr/share/java | ||
wget https://www.antlr.org/download/antlr4-cpp-runtime-4.12.0-source.zip && mkdir antlr4 | ||
pushd antlr4 | ||
unzip ../antlr4-cpp-runtime-4.12.0-source.zip && cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=17 -DBUILD_SHARED_LIBS=ON . && cmake --build build && sudo cmake --install build | ||
popd | ||
- name: Build, install & test | ||
run: | | ||
if [ "${{ matrix.config }}" == "debug" ]; then | ||
export BUILD_TYPE=Debug | ||
export CMAKE_ADDITIONAL_ARGS=-DSURELOG_WITH_TCMALLOC=Off | ||
else | ||
export BUILD_TYPE=Release | ||
export CMAKE_ADDITIONAL_ARGS= | ||
fi | ||
export INSTALL_DIR=`pwd`/install | ||
# Ensure that vendored dependencies' shared libraries are available | ||
# for any run checks, such as those in the `TestInstall` project | ||
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH | ||
cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR -DBUILD_SHARED_LIBS=ON -DSURELOG_USE_HOST_FLATBUFFERS=ON -DSURELOG_USE_HOST_ANTLR=ON -DSURELOG_USE_HOST_UHDM=ON -DSURELOG_USE_HOST_GTEST=ON -DSURELOG_WITH_TCMALLOC=OFF -DCMAKE_MODULE_PATH="/usr/share/CMake/Modules;/usr/local/lib/cmake" -S . -B build | ||
cmake --build build -j $(nproc) | ||
cmake --install build | ||
cmake --build build --target UnitTests -j $(nproc) | ||
pushd build && ctest --output-on-failure && popd | ||
rm -rf build # make sure we only see installation artifacts | ||
# this shouldnt be necessary, and can't be reproduced outside CI | ||
export CMAKE_PREFIX_PATH=$INSTALL_DIR | ||
cmake -DCMAKE_BUILD_TYPE=Release -DINSTALL_DIR=$INSTALL_DIR -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR -DBUILD_SHARED_LIBS=ON -DSURELOG_USE_HOST_FLATBUFFERS=ON -DSURELOG_USE_HOST_ANTLR=ON -DSURELOG_USE_HOST_UHDM=ON -DSURELOG_USE_HOST_GTEST=ON -S tests/TestInstall -B tests/TestInstall/build | ||
cmake --build tests/TestInstall/build -j $(nproc) | ||
echo "-- pkg-config content --" | ||
cat $INSTALL_DIR/lib/pkgconfig/Surelog.pc | ||
PREFIX=$INSTALL_DIR make test_install_pkgconfig |