Implement karatsuba multiplication... #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: push | |
name: Kryptos NetBSD CI | |
jobs: | |
NetBSD-GCC: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: NetBSD Forge | |
uses: vmactions/netbsd-vm@v1 | |
with: | |
sync: rsync | |
copyback: false | |
prepare: | | |
/usr/sbin/pkg_add sudo git gcc* | |
shell: bash | |
run: | | |
. src/build/ci/netbsd/install-hefesto.sh | |
cd src | |
sudo -E hefesto --mk-samples --toolset=gcc --no-test-progress | |
cd .. && sudo rm -rf kryptos | |
NetBSD-Clang: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: NetBSD Forge | |
uses: vmactions/netbsd-vm@v1 | |
with: | |
sync: rsync | |
copyback: false | |
prepare: | | |
/usr/sbin/pkg_add sudo git clang* | |
shell: bash | |
run: | | |
. src/build/ci/netbsd/install-hefesto.sh | |
cd src | |
sudo -E hefesto --mk-samples --toolset=clang --no-test-progress | |
cd .. && sudo rm -rf kryptos |