Skip to content

Commit

Permalink
github/workflows: install smbclient on runner
Browse files Browse the repository at this point in the history
Fix:
mount error: cifs filesystem not supported by the system
mount error(19): No such device
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) and kernel log messages (dmesg)

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
  • Loading branch information
moto-timo committed Dec 22, 2023
1 parent 6a99958 commit 1e7ce3a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ jobs:
steps:
- uses: actions/checkout@v4

# Install packages on the runner
- name: install smbclient
run: |
sudo apt-get update
sudo apt-get install smbclient
# Build the image
- name: build
run: docker build -t ${REPO} .
Expand Down

0 comments on commit 1e7ce3a

Please sign in to comment.