Skip to content

Commit

Permalink
fix(ci): try tmpfs mount
Browse files Browse the repository at this point in the history
sidestep fs limitation for exist/data
  • Loading branch information
duncdrum committed Mar 18, 2024
1 parent c26365f commit 48345ec
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ jobs:
- run: ant -Dapp.version=1.0.0-SNAPSHOT

# Install
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Configure docker
run: docker daemon --storage-opt dm.basesize=20G
# - name: Configure docker
# run: docker daemon --storage-opt dm.basesize=20G

- name: Check config
run: docker info
Expand All @@ -74,6 +74,7 @@ jobs:
run: |
docker run -dit -p 8080:8080 -v ${{ github.workspace }}/build:/exist/autodeploy \
--name exist --rm \
--mount type=tmpfs,destination=/exist/data \
duncdrum/existdb:${{ matrix.exist-version }}
- name: wait for install to finish
Expand Down

0 comments on commit 48345ec

Please sign in to comment.