Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/rgcgithub/regenie
Browse files Browse the repository at this point in the history
  • Loading branch information
joellembatchou committed Sep 3, 2024
2 parents 7efae88 + 98b158c commit b2a8683
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
name: Build
env:
BOOST_IO: 0
STATIC: 1
BGEN_VERSION: v1.1.7
CMAKE_VERSION_MAJOR: 3.28
CMAKE_VERSION_MINOR: 0
LIB_INSTALL: g++ libgomp1 make python3 zlib1g-dev wget libcurl4-openssl-dev
LIB_INSTALL: g++-9 gfortran-9 libgomp1 make python3 zlib1g-dev wget libcurl4-openssl-dev
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand All @@ -34,6 +34,10 @@ jobs:
- name: Apt packages
run: |
sudo apt install -y --no-install-recommends ${LIB_INSTALL}
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-9
sudo update-alternatives --install /usr/bin/gfortran gfortran /usr/bin/gfortran-9 70
sudo update-alternatives --install /usr/bin/f77 f77 /usr/bin/gfortran-9 70
sudo update-alternatives --install /usr/bin/cc cc /usr/bin/gcc-9 70
wget -O cmake_install.sh "http://cmake.org/files/v${CMAKE_VERSION_MAJOR}/cmake-${CMAKE_VERSION_MAJOR}.${CMAKE_VERSION_MINOR}-linux-x86_64.sh"
sudo sh cmake_install.sh --prefix=/usr/local --skip-license --exclude-subdir
sudo rm cmake_install.sh
Expand Down

0 comments on commit b2a8683

Please sign in to comment.