Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] Test actions #136

Open
wants to merge 38 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
e0bf645
Upgrade to python 3.10
qiao-bo Jan 10, 2022
c9a6609
Merge branch 'master' into python310
qiao-bo Jan 12, 2022
5694f4b
Merge branch 'master' into python310
qiao-bo Jan 22, 2022
57bd6cd
Update python requires
qiao-bo Jan 22, 2022
c70465c
Simplify sys info query
qiao-bo Jan 23, 2022
6bcd5f4
Merge branch 'master' into python310
qiao-bo Feb 14, 2022
8742608
Enable torch
qiao-bo Feb 17, 2022
6c0b233
change dir
qiao-bo Feb 17, 2022
306a5ac
change name
qiao-bo Feb 17, 2022
1c935af
increase parallelism
qiao-bo Feb 17, 2022
bfcb652
test t6
qiao-bo Feb 17, 2022
cb4621f
Avoid torch memory
qiao-bo Feb 18, 2022
c9b2608
Split torch test
qiao-bo Feb 18, 2022
47bf1bc
change
qiao-bo Feb 18, 2022
eb32894
reduce linux
qiao-bo Feb 18, 2022
fac0e86
reduce unix test
qiao-bo Feb 18, 2022
347cca7
change
qiao-bo Feb 18, 2022
c839d79
GPU strech test
qiao-bo Feb 18, 2022
7496bc4
split archs
qiao-bo Feb 18, 2022
ccc6d44
reduce t
qiao-bo Feb 18, 2022
f280f89
test windows
qiao-bo Feb 20, 2022
de96f10
Re-trigger test
qiao-bo Feb 20, 2022
e28ed69
retrigger
qiao-bo Feb 20, 2022
ecd0bcf
Merge branch 'master' into actions
qiao-bo Feb 21, 2022
0df7288
split windows test
qiao-bo Feb 21, 2022
3dd5def
Merge branch 'python310' into actions
qiao-bo Feb 21, 2022
9887e15
Mac python3.10
qiao-bo Feb 21, 2022
27338c5
comment out
qiao-bo Feb 21, 2022
87af0fe
macos python
qiao-bo Feb 21, 2022
25e9c47
Do not install torch
qiao-bo Feb 21, 2022
affb77c
M1 3.10
qiao-bo Feb 21, 2022
527e221
re trigger
qiao-bo Feb 21, 2022
7cd3613
trigger
qiao-bo Feb 21, 2022
f1e1908
Merge branch 'master' into actions
qiao-bo Feb 21, 2022
654716a
try
qiao-bo Feb 21, 2022
15b27b7
Merge branch 'master' into actions
qiao-bo Feb 23, 2022
9c264c6
what
qiao-bo Feb 23, 2022
8917421
trigger test
qiao-bo Feb 23, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .github/workflows/scripts/check_clang_tidy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

CI_SETUP_CMAKE_ARGS=$1

cd taichi
cd test_actions
python3 -m pip install -r requirements_dev.txt

rm -rf build && mkdir build && cd build
cmake $CI_SETUP_CMAKE_ARGS ..

cd ..
python3 ./scripts/run_clang_tidy.py $PWD/taichi -clang-tidy-binary clang-tidy-10 -checks=-*,performance-inefficient-string-concatenation,readability-identifier-naming -header-filter=$PWD/taichi -p $PWD/build -j2
python3 ./scripts/run_clang_tidy.py $PWD/test_actions -clang-tidy-binary clang-tidy-10 -checks=-*,performance-inefficient-string-concatenation,readability-identifier-naming -header-filter=$PWD/test_actions -p $PWD/build -j2
2 changes: 1 addition & 1 deletion .github/workflows/scripts/unix_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ check_in_docker() {
}

IN_DOCKER=$(check_in_docker)
[[ "$IN_DOCKER" == "true" ]] && cd taichi
[[ "$IN_DOCKER" == "true" ]] && cd test_actions

setup_sccache() {
export SCCACHE_DIR=$(pwd)/sccache_cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scripts/unix_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fi
python3 -m pip install dist/*.whl
if [ -z "$GPU_TEST" ]; then
python3 -m pip install -r requirements_test.txt
python3 -m pip install torch
#python3 -m pip install torch
else
## Only GPU machine uses system python.
export PATH=$PATH:$HOME/.local/bin
Expand Down
Loading