Skip to content
Merged
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
16 changes: 16 additions & 0 deletions .github/workflows/build-autotools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ jobs:
arch_packages: libgmp-dev libsodium-dev
unit_tests: true

- name: x86_64 Linux-latest
os: ubuntu-latest
host: x86_64-unknown-linux-gnu
arch: armhf # dummy arch
apt_get: gcc-multilib g++-multilib
arch_packages: libgmp-dev libsodium-dev
unit_tests: true

- name: x86_64 MacOS
os: macos-11
host: x86_64-apple-darwin20.6.0
Expand All @@ -50,6 +58,14 @@ jobs:
cxx: clang++
unit_tests: true

- name: x86_64 MacOS-latest
os: macos-latest
host: x86_64-apple-darwin20.6.0
brew_install: autoconf automake libtool gmp libsodium
cc: clang
cxx: clang++
unit_tests: true

steps:
- name: Get Source
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-11, ubuntu-20.04]
os: [macos-11, macos-latest, ubuntu-20.04, ubuntu-latest]

steps:
- name: Cancel previous runs on the same branch
Expand Down