Skip to content

Commit

Permalink
Update CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
boriskaus authored Aug 29, 2024
1 parent 545af1c commit 4e7e12c
Showing 1 changed file with 25 additions and 21 deletions.
46 changes: 25 additions & 21 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,20 +52,20 @@ jobs:
julia --project=. setup_packages.jl
cd ..
# - name: 'Compile LaMEM | Int32'
# run: |
# cd test
# julia --project=. compile_lamem.jl int32
# pwd
# # cleanup
# rm -rf ../lib/opt/*
# rm -rf ../lib/deb/*
# rm -rf ../dep/opt/*
# rm -rf ../dep/deb/*
# cd ../bin
# sudo -E mv -f opt opt32
# sudo -E mv -f deb deb32
# cd ..
- name: 'Compile LaMEM | Int32'
run: |
cd test
julia --project=. compile_lamem.jl int32
pwd
# cleanup
rm -rf ../lib/opt/*
rm -rf ../lib/deb/*
rm -rf ../dep/opt/*
rm -rf ../dep/deb/*
cd ../bin
sudo -E mv -f opt opt32
sudo -E mv -f deb deb32
cd ..
- name: 'Compile LaMEM | Int64'
run: |
Expand All @@ -76,19 +76,23 @@ jobs:
sudo -E mv -f deb deb64
cd ..
# - name: 'Test LaMEM | Int32'
# run: |
# cd bin
# sudo -E cp -r opt32 opt
# sudo -E cp -r deb32 deb
# cd ..
# julia --color=yes --depwarn=yes --inline=yes --project=. test/start_tests_CI.jl
- name: 'Test LaMEM | Int32'
run: |
cd bin
sudo -E cp -r opt32 opt
sudo -E cp -r deb32 deb
cd ..
julia --color=yes --depwarn=yes --inline=yes --project=. test/start_tests_CI.jl
- name: 'Test LaMEM | Int64'
run: |
cd bin
sudo -E rm -rf opt
sudo -E rm -rf deb
sudo -E cp -r opt64 opt
sudo -E cp -r deb64 deb
cd ..
julia --color=yes --depwarn=yes --inline=yes --project=. test/start_tests_CI.jl is64bit no_superlu
build_docs:
Expand Down

0 comments on commit 4e7e12c

Please sign in to comment.