From c851ff7eadc86ddb49cce6702c6bd4c9e7f5e474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingy=20d=C3=B6t=20Net?= Date: Wed, 23 Dec 2020 10:07:24 -0500 Subject: Replace ${{ x }} with ${{x}} Spaces in the syntax make it harder to reason if there will be spaces in the rendering or not. --- .github/workflows/ci.yaml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 27632e0..fc24f17 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -70,7 +70,7 @@ jobs: linux_libyaml: - name: libyaml ${{ matrix.arch }} ${{ matrix.platform }} + name: libyaml ${{matrix.arch}} ${{matrix.platform}} runs-on: ubuntu-latest strategy: matrix: @@ -82,7 +82,7 @@ jobs: arch: - x86_64 env: - DOCKER_IMAGE: quay.io/pypa/${{ matrix.platform }}_${{ matrix.arch }} + DOCKER_IMAGE: quay.io/pypa/${{matrix.platform}}_${{matrix.arch}} steps: - name: check cached libyaml state id: cached_libyaml @@ -90,7 +90,7 @@ jobs: with: path: | libyaml - key: libyaml_${{ matrix.platform }}_${{ matrix.arch }}_${{ env.LIBYAML_REF }} + key: libyaml_${{matrix.platform}}_${{matrix.arch}}_${{env.LIBYAML_REF}} - name: checkout pyyaml uses: actions/checkout@v2 @@ -109,7 +109,7 @@ jobs: linux_pyyaml: needs: linux_libyaml - name: pyyaml ${{ matrix.arch }} ${{ matrix.platform }} ${{ matrix.python_tag }} + name: pyyaml ${{matrix.arch}} ${{matrix.platform}} ${{matrix.python_tag}} runs-on: ubuntu-latest strategy: matrix: @@ -134,9 +134,9 @@ jobs: # arch: x86_64 # python_tag: cp27-cp27mu env: - AW_PLAT: ${{ matrix.platform }}_${{ matrix.arch }} - DOCKER_IMAGE: quay.io/pypa/${{ matrix.platform }}_${{ matrix.arch }} - PYTHON_TAG: ${{ matrix.python_tag }} + AW_PLAT: ${{matrix.platform}}_${{matrix.arch}} + DOCKER_IMAGE: quay.io/pypa/${{matrix.platform}}_${{matrix.arch}} + PYTHON_TAG: ${{matrix.python_tag}} PYYAML_BUILD_WHEELS: 1 steps: - uses: actions/checkout@v2 @@ -147,7 +147,7 @@ jobs: with: path: | libyaml - key: libyaml_${{ matrix.platform }}_${{ matrix.arch }}_${{ env.LIBYAML_REF }} + key: libyaml_${{matrix.platform}}_${{matrix.arch}}_${{env.LIBYAML_REF}} - name: ensure libyaml fetched run: exit 1 @@ -177,8 +177,8 @@ jobs: path: dist/*.whl macos_libyaml: - name: libyaml ${{ matrix.arch }} ${{ matrix.platform }} - runs-on: ${{ matrix.platform }} + name: libyaml ${{matrix.arch}} ${{matrix.platform}} + runs-on: ${{matrix.platform}} strategy: matrix: platform: @@ -192,7 +192,7 @@ jobs: with: path: | libyaml - key: libyaml_${{ matrix.platform }}_${{ matrix.arch }}_${{ env.LIBYAML_REF }} + key: libyaml_${{matrix.platform}}_${{matrix.arch}}_${{env.LIBYAML_REF}} - name: checkout pyyaml uses: actions/checkout@v2 @@ -208,8 +208,8 @@ jobs: macos_pyyaml: needs: macos_libyaml - name: pyyaml ${{ matrix.arch }} ${{ matrix.platform }} ${{ matrix.python_tag }} - runs-on: ${{ matrix.platform }} + name: pyyaml ${{matrix.arch}} ${{matrix.platform}} ${{matrix.python_tag}} + runs-on: ${{matrix.platform}} strategy: matrix: platform: @@ -232,7 +232,7 @@ jobs: with: path: | libyaml - key: libyaml_${{ matrix.platform }}_${{ matrix.arch }}_${{ env.LIBYAML_REF }} + key: libyaml_${{matrix.platform}}_${{matrix.arch}}_${{env.LIBYAML_REF}} - name: ensure libyaml fetched run: exit 1 @@ -245,7 +245,7 @@ jobs: - name: build/test/package env: - CIBW_BUILD: ${{ matrix.python_tag }} + CIBW_BUILD: ${{matrix.python_tag}} CIBW_BUILD_VERBOSITY: 1 run: | bash ./packaging/build/macos.sh -- cgit v1.2.1