-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Github Action CI (without GMP) (#29)
* Github Action CI (without GMP) * Deactivate MacOS, spurious failures: actions/runner-images#841 * force install with nimble * Add badge * Don"t include Nim 1.2.x #20 (comment) * Action branch mistake * Add back OSX? actions/runner-images#841, actions/runner-images#969 * fix MacOS target * comment out RDTSC on i386 * Add initialization canaries * Add more verbose output to debug windows failures * spurious windows i386 test * For now only activate Linux and mac * missed include
- Loading branch information
Showing
7 changed files
with
323 additions
and
48 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,199 @@ | ||
name: Constantine CI | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 20 | ||
matrix: | ||
branch: [devel] # [version-1-2, devel] - # 1.2 doesn't compile https://github.com/mratsim/constantine/pull/20#issuecomment-646327952 | ||
target: | ||
- os: linux | ||
cpu: amd64 | ||
TEST_LANG: c | ||
- os: linux | ||
cpu: amd64 | ||
TEST_LANG: cpp | ||
- os: linux | ||
cpu: i386 | ||
TEST_LANG: c | ||
- os: linux | ||
cpu: i386 | ||
TEST_LANG: cpp | ||
- os: macos | ||
cpu: amd64 | ||
TEST_LANG: c | ||
- os: macos | ||
cpu: amd64 | ||
TEST_LANG: cpp | ||
# TODO: | ||
# 1. Modulo/reduce bug on 32-bit | ||
# 2. ModInverse bug on all windows | ||
# - os: windows | ||
# cpu: amd64 | ||
# TEST_LANG: c | ||
# - os: windows | ||
# cpu: amd64 | ||
# TEST_LANG: cpp | ||
# - os: windows | ||
# cpu: i386 | ||
# TEST_LANG: c | ||
# - os: windows | ||
# cpu: i386 | ||
# TEST_LANG: cpp | ||
include: | ||
- target: | ||
os: linux | ||
builder: ubuntu-18.04 | ||
- target: | ||
os: macos | ||
builder: macos-10.15 | ||
# - target: | ||
# os: windows | ||
# builder: windows-2019 | ||
name: '${{ matrix.target.os }}-${{ matrix.target.cpu }}-${{ matrix.target.TEST_LANG }} (${{ matrix.branch }})' | ||
runs-on: ${{ matrix.builder }} | ||
steps: | ||
- name: Checkout constantine | ||
uses: actions/checkout@v2 | ||
with: | ||
path: constantine | ||
|
||
# - name: Install dependencies (Linux amd64) | ||
# if: runner.os == 'Linux' && matrix.target.cpu == 'amd64' | ||
# run: | | ||
# sudo DEBIAN_FRONTEND='noninteractive' apt-fast install \ | ||
# --no-install-recommends -yq <packages here> | ||
|
||
- name: Install dependencies (Linux i386) | ||
if: runner.os == 'Linux' && matrix.target.cpu == 'i386' | ||
run: | | ||
sudo dpkg --add-architecture i386 | ||
sudo apt-fast update -qq | ||
sudo DEBIAN_FRONTEND='noninteractive' apt-fast install \ | ||
--no-install-recommends -yq gcc-multilib g++-multilib \ | ||
libssl-dev:i386 | ||
mkdir -p external/bin | ||
cat << EOF > external/bin/gcc | ||
#!/bin/bash | ||
exec $(which gcc) -m32 "\$@" | ||
EOF | ||
cat << EOF > external/bin/g++ | ||
#!/bin/bash | ||
exec $(which g++) -m32 "\$@" | ||
EOF | ||
chmod 755 external/bin/gcc external/bin/g++ | ||
echo '::add-path::${{ github.workspace }}/external/bin' | ||
# - name: Install dependencies (macOS) | ||
# if: runner.os == 'macOS' | ||
# run: brew install <packages here> | ||
|
||
- name: Install dependencies (Windows) | ||
if: runner.os == 'Windows' | ||
shell: bash | ||
run: | | ||
mkdir external | ||
if [[ '${{ matrix.target.cpu }}' == 'amd64' ]]; then | ||
arch=64 | ||
else | ||
arch=32 | ||
fi | ||
curl -L "https://nim-lang.org/download/mingw$arch-6.3.0.7z" -o "external/mingw$arch.7z" | ||
curl -L "https://nim-lang.org/download/windeps.zip" -o external/windeps.zip | ||
7z x "external/mingw$arch.7z" -oexternal/ | ||
7z x external/windeps.zip -oexternal/dlls | ||
echo '::add-path::${{ github.workspace }}'"/external/mingw$arch/bin" | ||
echo '::add-path::${{ github.workspace }}'"/external/dlls" | ||
- name: Setup environment | ||
shell: bash | ||
run: echo '::add-path::${{ github.workspace }}/nim/bin' | ||
|
||
- name: Get latest Nim commit hash | ||
id: versions | ||
shell: bash | ||
run: | | ||
getHash() { | ||
git ls-remote "https://github.com/$1" "${2:-HEAD}" | cut -f 1 | ||
} | ||
nimHash=$(getHash nim-lang/Nim '${{ matrix.branch }}') | ||
csourcesHash=$(getHash nim-lang/csources) | ||
echo "::set-output name=nim::$nimHash" | ||
echo "::set-output name=csources::$csourcesHash" | ||
- name: Restore prebuilt Nim from cache | ||
id: nim-cache | ||
uses: actions/cache@v1 | ||
with: | ||
path: nim | ||
key: 'nim-${{ matrix.target.os }}-${{ matrix.target.cpu }}-${{ steps.versions.outputs.nim }}' | ||
|
||
- name: Restore prebuilt csources from cache | ||
if: steps.nim-cache.outputs.cache-hit != 'true' | ||
id: csources-cache | ||
uses: actions/cache@v1 | ||
with: | ||
path: csources/bin | ||
key: 'csources-${{ matrix.target.os }}-${{ matrix.target.cpu }}-${{ steps.versions.outputs.csources }}' | ||
|
||
- name: Checkout Nim csources | ||
if: > | ||
steps.csources-cache.outputs.cache-hit != 'true' && | ||
steps.nim-cache.outputs.cache-hit != 'true' | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: nim-lang/csources | ||
path: csources | ||
ref: ${{ steps.versions.outputs.csources }} | ||
|
||
- name: Checkout Nim | ||
if: steps.nim-cache.outputs.cache-hit != 'true' | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: nim-lang/Nim | ||
path: nim | ||
ref: ${{ steps.versions.outputs.nim }} | ||
|
||
- name: Build Nim and associated tools | ||
if: steps.nim-cache.outputs.cache-hit != 'true' | ||
shell: bash | ||
run: | | ||
ncpu= | ||
ext= | ||
case '${{ runner.os }}' in | ||
'Linux') | ||
ncpu=$(nproc) | ||
;; | ||
'macOS') | ||
ncpu=$(sysctl -n hw.ncpu) | ||
;; | ||
'Windows') | ||
ncpu=$NUMBER_OF_PROCESSORS | ||
ext=.exe | ||
;; | ||
esac | ||
[[ -z "$ncpu" || $ncpu -le 0 ]] && ncpu=1 | ||
if [[ ! -e csources/bin/nim$ext ]]; then | ||
make -C csources -j $ncpu CC=gcc ucpu='${{ matrix.target.cpu }}' | ||
else | ||
echo 'Using prebuilt csources' | ||
fi | ||
cp -v csources/bin/nim$ext nim/bin | ||
cd nim | ||
nim c koch | ||
./koch boot -d:release | ||
./koch tools -d:release | ||
# clean up to save cache space | ||
rm koch | ||
rm -rf nimcache | ||
rm -rf dist | ||
rm -rf .git | ||
- name: Install test dependencies | ||
shell: bash | ||
run: | | ||
nimble refresh | ||
nimble install -y gmp stew | ||
- name: Run constantine tests (without GMP) | ||
shell: bash | ||
run: | | ||
cd constantine | ||
nimble test_no_gmp |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Constantine | ||
# Copyright (c) 2018-2019 Status Research & Development GmbH | ||
# Copyright (c) 2020-Present Mamy André-Ratsimbazafy | ||
# Licensed and distributed under either of | ||
# * MIT license (license terms in the root directory or at http://opensource.org/licenses/MIT). | ||
# * Apache v2 license (license terms in the root directory or at http://www.apache.org/licenses/LICENSE-2.0). | ||
# at your option. This file may not be copied, modified, or distributed except according to those terms. | ||
|
||
import | ||
../../constantine/arithmetic/bigints, | ||
../../constantine/config/[common, curves], | ||
../../constantine/elliptic/[ec_weierstrass_affine, ec_weierstrass_projective] | ||
|
||
# Canaries | ||
# -------------------------------------------------------------- | ||
# | ||
# This file initializes a type with canary | ||
# to detect initialization bugs that are silent | ||
# when initialized from zero. | ||
|
||
when sizeof(SecretWord) == 8: | ||
const Canary = SecretWord(0xAAFACADEAAFACADE'u64) | ||
else: | ||
const Canary = SecretWord(0xAAFACADE'u32) | ||
|
||
func canary*(T: typedesc): T = | ||
when T is BigInt: | ||
for i in 0 ..< result.limbs.len: | ||
result.limbs[0] = Canary | ||
else: | ||
{.error: "Not implemented".} |
Oops, something went wrong.