Run in docker. #10
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: Go Build | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21.1 | |
- name: Pull and run build in Docker container | |
run: | | |
docker pull sippylabs/rtpproxy:latest | |
- name: Build | |
run: | | |
which go | |
echo ${RUNNER_TOOL_CACHE} | |
docker run --rm -v ${RUNNER_TOOL_CACHE}:${RUNNER_TOOL_CACHE} -v ${{ github.workspace }}:/workspace -e PATH -v ${GOCACHE}:${GOCACHE} -v ${GOENV}:${GOENV} \ | |
-v ${GOPATH}:${GOPATH} -v ${GOROOT}:${GOROOT} --entrypoint /bin/sh sippylabs/rtpproxy:latest -c "cd /workspace && go build -o rtp_cluster" |