Fix x86 Build (Invalid parameter to -march=
)
#66
Workflow file for this run
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
name: Build-Linux | |
on: [push, pull_request] | |
jobs: | |
build-ubuntu: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- name: update apt | |
run: sudo apt update | |
- name: remove preinstalled Boost | |
run: sudo rm -rf /usr/local/share/boost | |
- name: install monero dependencies | |
run: sudo apt -y install build-essential cmake libboost-all-dev miniupnpc libunbound-dev graphviz doxygen libunwind8-dev pkg-config libssl-dev libzmq3-dev libsodium-dev libhidapi-dev libnorm-dev libusb-1.0-0-dev libpgm-dev | |
- name: build | |
run: mkdir build && cd build && cmake -D CMAKE_BUILD_TYPE=Release .. && make daemon simplewallet -j2 |