Merge branch 'main' into test/bats_tagging

This commit is contained in:
alice nodelman
2026-04-22 15:00:49 -07:00
committed by GitHub
15 changed files with 460 additions and 50 deletions
+31
View File
@@ -0,0 +1,31 @@
name: functional tests (sidecar)
permissions: {}
on: pull_request
jobs:
build:
name: RunTests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: 'stable'
id: go
- name: Get Dependencies
run: |
go mod download
- name: Build and Run
run: |
make testbin
./runtests.sh --sidecar
- name: Coverage Report
run: |
go tool covdata percent -i=/tmp/covdata
+5 -4
View File
@@ -50,10 +50,11 @@ jobs:
sudo apt-get update
sudo apt-get install s3cmd
- name: Install mc
run: |
curl https://dl.min.io/client/mc/release/linux-amd64/mc --create-dirs -o /usr/local/bin/mc
chmod 755 /usr/local/bin/mc
# disable mc tests due to dl.min.io instability
# - name: Install mc
# run: |
# curl https://dl.min.io/client/mc/release/linux-amd64/mc --create-dirs -o /usr/local/bin/mc
# chmod 755 /usr/local/bin/mc
- name: Install xml libraries (for rest)
run: |