diff --git a/.github/workflows/push_wrapper.yaml b/.github/workflows/push_wrapper.yaml new file mode 100644 index 0000000..8451001 --- /dev/null +++ b/.github/workflows/push_wrapper.yaml @@ -0,0 +1,40 @@ +name: ci + +on: + push: + branches: main + +jobs: + main: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v2 + - id: sha + run: echo "::set-output name=sha::$(git describe --always --tags --dirty)" + - + name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - + name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_PW }} + - + name: Build and push http wrapper + id: docker_build + uses: docker/build-push-action@v2 + with: + context: . + file: ./http-wrapper/Dockerfile + push: true + platforms: linux/amd64 + tags: leonnicolas/rust-opencl-demo-wrapper:latest, leonnicolas/rust-opencl-demo-wrapper:${{ steps.sha.outputs.sha }} + - + name: Image digest + run: echo ${{ steps.docker_build.outputs.digest }} diff --git a/http-wrapper/Dockerfile b/http-wrapper/Dockerfile new file mode 100644 index 0000000..97500ac --- /dev/null +++ b/http-wrapper/Dockerfile @@ -0,0 +1,16 @@ +FROM rust as builder +RUN apt-get update +RUN apt-get install ocl-icd-opencl-dev -y +COPY . . +RUN cargo build --release + +FROM golang as builder2 +RUN go get github.com/parallel-programming-hwr/http-exec + +FROM nvidia/opencl:devel-ubuntu18.04 +WORKDIR benchmark +COPY --from=builder2 /go/bin/http-exec . +RUN apt-get update +COPY --from=builder target/release/rust-opencl-demo . +ENV PATH="${PATH}:/benchmark" +ENTRYPOINT ["./http-exec","--command=rust-opencl-demo"]