Skip to content

Commit

Permalink
Allow xgo To Use Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
cwarden committed Oct 5, 2023
1 parent ce0c8c9 commit 1968588
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,19 @@ jobs:
docker:
- image: cimg/go:1.21
steps:
- setup_remote_docker:
version: 20.10.17
docker_layer_caching: true
- checkout
- run: go install github.com/tcnksm/[email protected]
- run: sudo apt-get update && sudo apt-get install p7zip-full
- run: sudo bash -c "curl -L --output - https://github.com/crazy-max/xgo/releases/download/v0.30.0/xgo_0.30.0_linux_amd64.tar.gz | tar xvz -C /usr/local/bin/ ./xgo"
- run:
command: |
sudo chmod 666 /var/run/docker.sock
if [ -f /var/run/docker-temp.sock ]; then
sudo chmod 666 /var/run/docker-temp.sock
fi
- run: make dist
- run:
name: create release
Expand Down

0 comments on commit 1968588

Please sign in to comment.