File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1212 include :
1313 - python-version : ' 3.7'
1414 os : ubuntu-22.04
15+ - python-version : ' 3.12'
16+ os : macos-latest
1517 fail-fast : false
1618 runs-on : ${{ matrix.os }}
1719 env :
3840 key : ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.cache-revision }}
3941 - name : Download minio on cache miss
4042 if : steps.cache-minio.outputs.cache-hit != 'true'
43+ env :
44+ minio-bin-url : ${{ matrix.os == 'macos-latest' && 'https://dl.min.io/server/minio/release/darwin-arm64/minio' || 'https://dl.minio.io/server/minio/release/linux-amd64/minio' }}
4145 run : |
4246 mkdir -p ~/cache
43- test ! -e ~/cache/minio && wget -O ~/cache/minio https://dl. minio.io/server/minio/release/linux-amd64/minio || echo "Minio already in cache"
47+ test ! -e ~/cache/minio && wget -O ~/cache/minio ${{ minio-bin-url }} || echo "Minio already in cache"
4448 - name : Start a local instance of minio
4549 run : |
4650 export MINIO_ROOT_USER=Q3AM3UQ867SPQQA43P2F
You can’t perform that action at this time.
0 commit comments