mirror of
https://github.com/ethereum/consensus-specs.git
synced 2026-02-02 07:24:56 -05:00
17 lines
370 B
YAML
17 lines
370 B
YAML
version: 2.0
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: cimg/base:2020.01
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: Install solidity
|
|
command: |
|
|
sudo add-apt-repository ppa:ethereum/ethereum
|
|
sudo apt-get update
|
|
sudo apt-get install solc
|
|
- run:
|
|
name: Compile the contract
|
|
command: make
|