Remove test branch from travis.yml
This commit is contained in:
parent
5b4f511011
commit
d00f836206
|
@ -26,6 +26,7 @@ jobs:
|
||||||
# ${{ runner.os }}-ccache-${{ github.sha }} exists
|
# ${{ runner.os }}-ccache-${{ github.sha }} exists
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-ccache-
|
${{ runner.os }}-ccache-
|
||||||
|
|
||||||
- name: Print system information
|
- name: Print system information
|
||||||
run: |
|
run: |
|
||||||
if [ "$RUNNER_OS" == "Linux" ]; then
|
if [ "$RUNNER_OS" == "Linux" ]; then
|
||||||
|
@ -36,6 +37,7 @@ jobs:
|
||||||
echo "$RUNNER_OS not supported"
|
echo "$RUNNER_OS not supported"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: |
|
run: |
|
||||||
if [ "$RUNNER_OS" == "Linux" ]; then
|
if [ "$RUNNER_OS" == "Linux" ]; then
|
||||||
|
@ -47,6 +49,7 @@ jobs:
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
ccache -M 300M # Limit the ccache size; Github's overall cache limit is 5GB
|
ccache -M 300M # Limit the ccache size; Github's overall cache limit is 5GB
|
||||||
|
|
||||||
- name: gfortran build
|
- name: gfortran build
|
||||||
if: matrix.build == 'make' && matrix.fortran == 'gfortran'
|
if: matrix.build == 'make' && matrix.fortran == 'gfortran'
|
||||||
run: |
|
run: |
|
||||||
|
@ -58,7 +61,9 @@ jobs:
|
||||||
echo "$RUNNER_OS not supported"
|
echo "$RUNNER_OS not supported"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
make -j$(nproc) DYNAMIC_ARCH=1 USE_OPENMP=0
|
make -j$(nproc) DYNAMIC_ARCH=1 USE_OPENMP=0
|
||||||
|
|
||||||
- name: flang build
|
- name: flang build
|
||||||
if: matrix.build == 'make' && matrix.fortran == 'flang'
|
if: matrix.build == 'make' && matrix.fortran == 'flang'
|
||||||
run: |
|
run: |
|
||||||
|
@ -70,12 +75,16 @@ jobs:
|
||||||
echo "$RUNNER_OS not supported"
|
echo "$RUNNER_OS not supported"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd /usr/
|
cd /usr/
|
||||||
sudo wget -nv https://github.com/flang-compiler/flang/releases/download/flang_20190329/flang-20190329-x86-70.tgz
|
sudo wget -nv https://github.com/flang-compiler/flang/releases/download/flang_20190329/flang-20190329-x86-70.tgz
|
||||||
sudo tar xf flang-20190329-x86-70.tgz
|
sudo tar xf flang-20190329-x86-70.tgz
|
||||||
sudo rm flang-20190329-x86-70.tgz
|
sudo rm flang-20190329-x86-70.tgz
|
||||||
cd -
|
cd -
|
||||||
|
|
||||||
make -j$(nproc) DYNAMIC_ARCH=1 USE_OPENMP=0 FC=flang
|
make -j$(nproc) DYNAMIC_ARCH=1 USE_OPENMP=0 FC=flang
|
||||||
|
|
||||||
|
|
||||||
- name: CMake gfortran build
|
- name: CMake gfortran build
|
||||||
if: matrix.build == 'cmake' && matrix.fortran == 'gfortran'
|
if: matrix.build == 'cmake' && matrix.fortran == 'gfortran'
|
||||||
run: |
|
run: |
|
||||||
|
@ -87,6 +96,7 @@ jobs:
|
||||||
echo "$RUNNER_OS not supported"
|
echo "$RUNNER_OS not supported"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake -DDYNAMIC_ARCH=1 -DNOFORTRAN=0 -DBUILD_WITHOUT_LAPACK=0 -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=Release ..
|
cmake -DDYNAMIC_ARCH=1 -DNOFORTRAN=0 -DBUILD_WITHOUT_LAPACK=0 -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=Release ..
|
||||||
|
|
|
@ -308,7 +308,6 @@ branches:
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
- develop
|
- develop
|
||||||
- tbbharaj/arm64-support
|
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
webhooks:
|
webhooks:
|
||||||
|
|
Loading…
Reference in New Issue