Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,21 @@ jobs:
matrix:
# os: [] #for testing with act
include:
- os: ubuntu-22.04
- os: ubuntu-24.04
compiler: g++
target: Linux

- os: ubuntu-20.04
- os: ubuntu-22.04
compiler: g++
target: Linux
- os: macos-12

- os: macos-15
compiler: clang

- os: macos-11
- os: macos-14
compiler: clang

- os: macos-13
compiler: clang

steps:
Expand All @@ -69,7 +72,7 @@ jobs:
- name: Install - MacOS
if: startsWith(matrix.os,'macos')
run: |
HOMEBREW_NO_AUTO_UPDATE=1 brew install git coreutils cmake gcc gsl xerces-c xsd || true
HOMEBREW_NO_AUTO_UPDATE=1 brew install coreutils gsl xerces-c xsd || true
HOMEBREW_NO_AUTO_UPDATE=1 brew link --overwrite xsd

- name: Infos
Expand Down Expand Up @@ -109,4 +112,4 @@ jobs:
asset_path: ./openMalaria-${{matrix.os}}.tar.gz
asset_name: openMalaria-${{matrix.os}}.tar.gz
asset_content_type: application/zip


1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# Copyright © 2005-2013 Swiss Tropical Institute and Liverpool School Of Tropical Medicine
# Licence: GNU General Public Licence version 2 or later (see COPYING)

cmake_minimum_required (VERSION 3.0)

project (OpenMalaria CXX)

Expand Down
Loading