fix(ci): add missing b3sum

This commit is contained in:
Edouard Vanbelle
2026-05-13 19:47:39 +02:00
parent 739235faf0
commit b47013ea8a
+3 -3
View File
@@ -157,7 +157,7 @@ jobs:
retention-days: 1 retention-days: 1
api-test: api-test:
name: API tests (via Hurl) name: API & Webdav tests
needs: build needs: build
if: github.event_name == 'pull_request' if: github.event_name == 'pull_request'
timeout-minutes: 30 timeout-minutes: 30
@@ -173,7 +173,7 @@ jobs:
- name: Set execute bit on pre-built binary - name: Set execute bit on pre-built binary
run: chmod +x target/release/oxicloud run: chmod +x target/release/oxicloud
- name: Install Hurl - name: Install Hurl and b3sum
env: env:
HURL_MAJOR: "8" HURL_MAJOR: "8"
run: | run: |
@@ -181,7 +181,7 @@ jobs:
https://api.github.com/repos/Orange-OpenSource/hurl/releases \ https://api.github.com/repos/Orange-OpenSource/hurl/releases \
| jq -r "map(select(.tag_name | startswith(\"${HURL_MAJOR}.\"))) | first | .tag_name") | jq -r "map(select(.tag_name | startswith(\"${HURL_MAJOR}.\"))) | first | .tag_name")
curl -fLO "https://github.com/Orange-OpenSource/hurl/releases/download/${HURL_VERSION}/hurl_${HURL_VERSION}_amd64.deb" curl -fLO "https://github.com/Orange-OpenSource/hurl/releases/download/${HURL_VERSION}/hurl_${HURL_VERSION}_amd64.deb"
sudo apt-get install -y "./hurl_${HURL_VERSION}_amd64.deb" sudo apt-get install -y "./hurl_${HURL_VERSION}_amd64.deb" b3sum
- name: Run Hurl API tests - name: Run Hurl API tests
run: bash tests/api/run.sh run: bash tests/api/run.sh