Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
keynmol committed Jun 26, 2024
1 parent a96164a commit 3b25b36
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/protobuf-reprolang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,8 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- run: ./dev/generate-all-in-docker.sh
- run: docker pull ghcr.io/sourcegraph/scip:latest || echo "no suitable cache"

- run: chown -R 1001:1001 . && ./dev/generate-all-in-docker.sh

- run: git diff --exit-code
3 changes: 2 additions & 1 deletion dev/Dockerfile.bindings
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ RUN apt-get update -q && apt-get install -y git curl xz-utils tar gpg build-esse
libncursesw5-dev tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev \
libffi8 libgmp-dev libgmp10 libncurses-dev libncurses5 libtinfo5 pkg-config

RUN adduser --shell /bin/bash --home /asdf --disabled-password asdf
RUN groupadd -g 1001 asdf
RUN adduser -u 1001 --gid 1001 --shell /bin/bash --home /asdf --disabled-password asdf
ENV PATH="${PATH}:/asdf/.asdf/shims:/asdf/.asdf/bin"

USER asdf
Expand Down

0 comments on commit 3b25b36

Please sign in to comment.