fix(parser): avoid int overflow skipping map/attr bodies on read (#3877) #3939
This file contains hidden or 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: RE Tests | |
| on: | |
| push: | |
| branches: [master, v9, v9.7, v9.8] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| if: false # Temporarily disabled, should be enabled when we have a current and stable RE build | |
| name: build | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| go-version: [1.25.x] | |
| re-build: ["7.4.2-54"] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| - name: Clone Redis EE docker repository | |
| uses: actions/checkout@v7 | |
| with: | |
| repository: RedisLabs/redis-ee-docker | |
| path: redis-ee | |
| - name: Set up ${{ matrix.go-version }} | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Build cluster | |
| working-directory: redis-ee | |
| env: | |
| IMAGE: "redislabs/redis:${{ matrix.re-build }}" | |
| RE_USERNAME: test@test.com | |
| RE_PASS: 12345 | |
| RE_CLUSTER_NAME: re-test | |
| RE_USE_OSS_CLUSTER: false | |
| RE_DB_PORT: 6379 | |
| run: ./build.sh | |
| - name: Test | |
| env: | |
| RE_CLUSTER: true | |
| REDIS_VERSION: "7.4" | |
| run: | | |
| go test \ | |
| -skip="^TestTLS" \ | |
| --ginkgo.skip-file="ring_test.go" \ | |
| --ginkgo.skip-file="sentinel_test.go" \ | |
| --ginkgo.skip-file="osscluster_test.go" \ | |
| --ginkgo.skip-file="pubsub_test.go" \ | |
| --ginkgo.skip-file="tls_test.go" \ | |
| --ginkgo.skip-file="tls_cluster_test.go" \ | |
| --ginkgo.label-filter='!NonRedisEnterprise' |