Skip to content

Commit 8c6a5bf

Browse files
add aistor to CI to validate new full-object checksums
1 parent ffa2ddd commit 8c6a5bf

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/go-windows.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
os: [windows-latest]
2222
steps:
2323
- name: Set up Go ${{ matrix.go-version }} on ${{ matrix.os }}
24-
uses: actions/setup-go@v1
24+
uses: actions/setup-go@v5
2525
with:
2626
go-version: ${{ matrix.go-version }}
2727
id: go
2828

2929
- name: Check out code into the Go module directory
30-
uses: actions/checkout@v1
30+
uses: actions/checkout@v4
3131

3232
- name: Build on ${{ matrix.os }}
3333
env:

.github/workflows/go.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,13 @@ jobs:
2020
go-version: [1.22.x, 1.23.x]
2121
os: [ubuntu-latest]
2222
steps:
23+
- uses: actions/checkout@v4
2324
- name: Set up Go ${{ matrix.go-version }} on ${{ matrix.os }}
24-
uses: actions/setup-go@v1
25+
uses: actions/setup-go@v5
2526
with:
2627
go-version: ${{ matrix.go-version }}
2728
id: go
2829

29-
- name: Check out code into the Go module directory
30-
uses: actions/checkout@v1
31-
3230
- name: Build on ${{ matrix.os }}
3331
env:
3432
MINT_MODE: full
@@ -37,13 +35,13 @@ jobs:
3735
SECRET_KEY: minioadmin
3836
ENABLE_HTTPS: 1
3937
MINIO_KMS_MASTER_KEY: my-minio-key:6368616e676520746869732070617373776f726420746f206120736563726574
38+
MINIO_LICENSE: ${{ secrets.MINIO_LICENSE }}
4039
SSL_CERT_FILE: /tmp/certs-dir/public.crt
4140
MINIO_CI_CD: true
42-
MINT_NO_FULL_OBJECT: true
4341
run: |
4442
sudo apt update -y
4543
sudo apt install devscripts -y
46-
wget -O /tmp/minio https://dl.minio.io/server/minio/release/linux-amd64/minio
44+
wget -O /tmp/minio https://dl.minio.io/aistor/minio/release/linux-amd64/minio
4745
chmod +x /tmp/minio
4846
mkdir -p /tmp/certs-dir
4947
cp testcerts/* /tmp/certs-dir

0 commit comments

Comments
 (0)