-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from wpt967/revive-debian-x86-build
[workflows] Add workflow for building revive in a debian container.
- Loading branch information
Showing
7 changed files
with
93 additions
and
0 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,38 @@ | ||
name: Build revive-debian | ||
on: | ||
workflow_dispatch: | ||
|
||
env: | ||
REVIVE_DEBIAN_PACKAGE: revive-debian-x86 | ||
DEBIAN_CONTAINER: revive-builder-debian-x86 | ||
DEBIAN_CONTAINER_BUILDER: build-debian-builder.sh | ||
DEBIAN_CONTAINER_RUNNER: run-debian-builder.sh | ||
REVIVE_DEBIAN_INSTALL: ${{ github.workspace }}/target/release | ||
REVIVE_DEBIAN_BINARY: resolc | ||
RUST_VERSION: "1.80" | ||
|
||
jobs: | ||
build-revive-debian-x86: | ||
name: debian-container-x86 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: build-container | ||
run: | | ||
(cd utils && ./${{ env.DEBIAN_CONTAINER_BUILDER}} --build-arg RUST_VERSION=${{ env.RUST_VERSION}} . ) | ||
- name: build-revive-debian | ||
run: | | ||
rustup show | ||
cargo --version | ||
rustup +nightly show | ||
cargo +nightly --version | ||
bash --version | ||
utils/${{ env.DEBIAN_CONTAINER_RUNNER }} utils/build-revive.sh -o ${{ env.REVIVE_DEBIAN_INSTALL}} | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ env.REVIVE_DEBIAN_PACKAGE }} | ||
path: ${{ env.REVIVE_DEBIAN_INSTALL }}/${{ env.REVIVE_DEBIAN_BINARY }} | ||
retention-days: 1 |
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,7 @@ | ||
#! /usr/bin/env bash | ||
|
||
CONTAINER=revive-builder-debian-x86 | ||
VERSION=latest | ||
DOCKERFILE=revive-builder-debian.dockerfile | ||
|
||
docker build --rm -t ${CONTAINER}:${VERSION} -f ${DOCKERFILE} $@ |
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,20 @@ | ||
#! /usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
REVIVE_INSTALL_DIR=$(pwd)/target/release | ||
while getopts "o:" option ; do | ||
case $option in | ||
o) # Output directory | ||
REVIVE_INSTALL_DIR=$OPTARG | ||
;; | ||
\?) echo "Error: Invalid option" | ||
exit 1;; | ||
esac | ||
done | ||
echo "Installing to ${REVIVE_INSTALL_DIR}" | ||
|
||
$(pwd)/build-llvm.sh | ||
export PATH=$(pwd)/llvm18.0/bin:$PATH | ||
|
||
make install-revive REVIVE_INSTALL_DIR=${REVIVE_INSTALL_DIR} |
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,14 @@ | ||
# syntax=docker/dockerfile:1 | ||
# Dockerfile for building revive in a Debian container. | ||
FROM debian:12 | ||
RUN <<EOF | ||
apt-get update | ||
apt-get install -q -y build-essential cmake make ninja-build python3 \ | ||
libmpfr-dev libgmp-dev libmpc-dev ncurses-dev \ | ||
git curl | ||
EOF | ||
ARG RUST_VERSION=stable | ||
RUN <<EOF | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain ${RUST_VERSION} | ||
EOF | ||
ENV PATH=/root/.cargo/bin:${PATH} |
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,6 @@ | ||
#! /usr/bin/env bash | ||
|
||
CONTAINER=revive-builder-debian-x86 | ||
VERSION=latest | ||
|
||
docker run --rm -v $(pwd):$(pwd) -w $(pwd) ${CONTAINER}:${VERSION} $@ |