Skip to content

Commit 62526da

Browse files
committed
adjust
1 parent a76ac49 commit 62526da

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,14 @@ jobs:
4242
echo "CC=clang" >> $GITHUB_ENV
4343
echo "CXX=clang++" >> $GITHUB_ENV
4444
fi
45-
sudo apt-get install curl freeglut3-dev g++ gcc git libblas-dev libbz2-dev liblapack-dev libnuma-dev libomp5 libomp-dev libopenmpi-dev libpthread-stubs0-dev make wget zlib1g-dev python3-dev libbz2-dev libffi-dev liblzma-dev libreadline-dev libsqlite3-dev libssl-dev python3-openssl tk-dev xz-utils zlib1g-dev
45+
sudo apt-get install curl freeglut3-dev g++ gcc git libblas-dev \
46+
libbz2-dev liblapack-dev libnuma-dev libomp5 \
47+
libomp-dev libopenmpi-dev libpthread-stubs0-dev \
48+
make wget zlib1g-dev python3-dev libbz2-dev \
49+
libffi-dev liblzma-dev libreadline-dev \
50+
libsqlite3-dev libssl-dev python3-openssl tk-dev \
51+
xz-utils zlib1g-dev
52+
curl https://pyenv.run | bash
4653
4754
- name: Cache Third Party Packages
4855
uses: actions/cache@v4
@@ -84,7 +91,6 @@ jobs:
8491
- name: Configure project
8592
run: |
8693
#FIXME: Drop this requirement by passing to cmake -DNOPYENV=Yes
87-
curl https://pyenv.run | bash
8894
export PATH="$HOME/.pyenv/bin:$PATH"
8995
eval "$(pyenv init --path)"
9096
eval "$(pyenv init -)"

.github/workflows/clang-tidy-review.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,13 @@ jobs:
4141
id: review
4242
with:
4343
build_dir: build
44-
apt_packages: build-essential, cmake, curl, freeglut3-dev, g++, gcc, git, libblas-dev, libbz2-dev, libffi-dev, liblapack-dev, liblzma-dev, libncursesw5-dev, libnuma-dev, libomp-dev, libomp5, libopenmpi-dev, libpthread-stubs0-dev, libreadline-dev, libsqlite3-dev, libssl-dev, libxml2-dev, libxmlsec1-dev, make, python3-dev, python3-openssl, tk-dev, wget, xz-utils, zlib1g-dev
44+
apt_packages:|
45+
build-essential, cmake, curl, freeglut3-dev, g++, gcc, git, \
46+
libblas-dev, libbz2-dev, libffi-dev, liblapack-dev, liblzma-dev, \
47+
libncursesw5-dev, libnuma-dev, libomp-dev, libomp5, libopenmpi-dev,\
48+
libpthread-stubs0-dev, libreadline-dev, libsqlite3-dev, libssl-dev,\
49+
libxml2-dev, libxmlsec1-dev, make, python3-dev, python3-openssl, \
50+
tk-dev, wget, xz-utils, zlib1g-dev
4551
exclude: "test/*,unittests/*"
4652
split_workflow: true
4753
config_file: .clang-tidy
@@ -61,7 +67,6 @@ jobs:
6167
-DCMAKE_EXPORT_COMPILE_COMMANDS=On || true'
6268
6369
- name: Upload artifacts
64-
if: always()
6570
uses: ZedThree/clang-tidy-review/[email protected]
6671

6772
- name: Setup tmate session

0 commit comments

Comments
 (0)