We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea4a31e commit 7709c4eCopy full SHA for 7709c4e
.github/workflows/tests.yaml
@@ -18,7 +18,7 @@ jobs:
18
steps:
19
- name: Update repositories
20
run: |
21
- apt update || echo "apt-update failed" # && apt -y upgrade
+ sudo apt update || echo "apt-update failed" # && apt -y upgrade
22
23
- name: Checkout ${{ github.event.repository.name }}
24
uses: actions/checkout@v4
@@ -32,9 +32,9 @@ jobs:
32
33
- name: Setup couchbase
34
35
- apt install -y iputils-ping || echo "apt-install failed"
+ sudo apt install -y iputils-ping || echo "apt-install failed"
36
ping -c 1 couchbase && (
37
- apt install -y socat
+ sudo apt install -y socat
38
socat TCP-LISTEN:8091,fork TCP:couchbase:8091 &
39
socat TCP-LISTEN:8092,fork TCP:couchbase:8092 &
40
socat TCP-LISTEN:8093,fork TCP:couchbase:8093 &
0 commit comments