File tree Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -132,22 +132,15 @@ jobs:
132132 asv run --quick --dry-run --durations=30 --python=same --show-stderr
133133
134134 build_docker_dev_environment :
135- name : Build Docker Dev Environment (${{ matrix.arch }})
136- runs-on : ${{ matrix.platform }}
137- strategy :
138- matrix :
139- include :
140- - arch : amd64
141- platform : ubuntu-24.04
142- - arch : arm64
143- platform : ubuntu-24.04-arm
135+ name : Build Docker Dev Environment
136+ runs-on : ubuntu-24.04
144137 defaults :
145138 run :
146139 shell : bash -el {0}
147140
148141 concurrency :
149142 # https://github.community/t/concurrecy-not-work-for-push/183068/7
150- group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-build_docker_dev_environment-${{ matrix.arch }}
143+ group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-build_docker_dev_environment
151144 cancel-in-progress : true
152145
153146 steps :
@@ -160,10 +153,10 @@ jobs:
160153 fetch-depth : 0
161154
162155 - name : Build image
163- run : docker build --pull --no-cache --tag pandas-dev-env-${{ matrix.arch }} .
156+ run : docker build --pull --no-cache --tag pandas-dev-env .
164157
165158 - name : Show environment
166- run : docker run --rm pandas-dev-env-${{ matrix.arch }} python -c "import pandas as pd; print(pd.show_versions())"
159+ run : docker run --rm pandas-dev-env python -c "import pandas as pd; print(pd.show_versions())"
167160
168161 requirements-dev-text-installable :
169162 name : Test install requirements-dev.txt
You can’t perform that action at this time.
0 commit comments