mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Use up-to-date archlinux instead of a custom docker image for archlinux build.
This commit is contained in:
parent
4182033264
commit
6122faf9b4
@ -9,9 +9,6 @@ cd .circleci/docker/
|
||||
|
||||
docker build -t ethereum/solc-buildpack-deps:ubuntu1904 -f Dockerfile.ubuntu1904 .
|
||||
docker push solidity/solc-buildpack-deps:ubuntu1904
|
||||
|
||||
docker build -t ethereum/solc-buildpack-deps:archlinux -f Dockerfile.archlinux .
|
||||
docker push solidity/solc-buildpack-deps:archlinux
|
||||
```
|
||||
|
||||
which you can find on Dockerhub after the push at:
|
||||
|
@ -333,10 +333,14 @@ jobs:
|
||||
|
||||
b_archlinux:
|
||||
docker:
|
||||
- image: ethereum/solidity-buildpack-deps:archlinux
|
||||
- image: archlinux/base
|
||||
environment:
|
||||
TERM: xterm
|
||||
steps:
|
||||
- run:
|
||||
name: Install build dependencies
|
||||
command: |
|
||||
pacman --noconfirm -Syu --noprogressbar --needed base-devel boost cmake z3 cvc4 git openssh tar
|
||||
- checkout
|
||||
- run: *run_build
|
||||
- store_artifacts: *artifacts_solc
|
||||
|
@ -1,28 +0,0 @@
|
||||
# vim:syntax=dockerfile
|
||||
#------------------------------------------------------------------------------
|
||||
# Dockerfile for building and testing Solidity Compiler on CI
|
||||
# Target: Arch Linux
|
||||
# URL: https://hub.docker.com/r/ethereum/solidity-buildpack-deps
|
||||
#
|
||||
# This file is part of solidity.
|
||||
#
|
||||
# solidity is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# solidity is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with solidity. If not, see <http://www.gnu.org/licenses/>
|
||||
#
|
||||
# (c) 2016-2019 solidity contributors.
|
||||
#------------------------------------------------------------------------------
|
||||
FROM archlinux/base
|
||||
|
||||
RUN pacman --noconfirm -Syu --noprogressbar --needed \
|
||||
base-devel boost cmake z3 cvc4 git openssh tar
|
||||
|
Loading…
Reference in New Issue
Block a user