chore: Configure Renovate - autoclosed #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MinIO advanced tests | |
on: | |
pull_request: | |
branches: | |
- master | |
- next | |
# This ensures that previous jobs for the PR are canceled when the PR is | |
# updated. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
replication-test: | |
name: Advanced Tests with Go ${{ matrix.go-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: [1.22.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
check-latest: true | |
- name: Test Decom | |
run: | | |
sudo sysctl net.ipv6.conf.all.disable_ipv6=0 | |
sudo sysctl net.ipv6.conf.default.disable_ipv6=0 | |
make test-decom | |
- name: Test ILM | |
run: | | |
sudo sysctl net.ipv6.conf.all.disable_ipv6=0 | |
sudo sysctl net.ipv6.conf.default.disable_ipv6=0 | |
make test-ilm | |
- name: Test PBAC | |
run: | | |
sudo sysctl net.ipv6.conf.all.disable_ipv6=0 | |
sudo sysctl net.ipv6.conf.default.disable_ipv6=0 | |
make test-pbac | |
- name: Test Config File | |
run: | | |
sudo sysctl net.ipv6.conf.all.disable_ipv6=0 | |
sudo sysctl net.ipv6.conf.default.disable_ipv6=0 | |
make test-configfile | |
- name: Test Replication | |
run: | | |
sudo sysctl net.ipv6.conf.all.disable_ipv6=0 | |
sudo sysctl net.ipv6.conf.default.disable_ipv6=0 | |
make test-replication | |
- name: Test MinIO IDP for automatic site replication | |
run: | | |
sudo sysctl net.ipv6.conf.all.disable_ipv6=0 | |
sudo sysctl net.ipv6.conf.default.disable_ipv6=0 | |
make test-site-replication-minio | |
- name: Test Versioning | |
run: | | |
sudo sysctl net.ipv6.conf.all.disable_ipv6=0 | |
sudo sysctl net.ipv6.conf.default.disable_ipv6=0 | |
make test-versioning |