mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-30 04:39:03 +01:00
Consolidate repeated deploy jobs into a matrix
This commit is contained in:
parent
1894fc6868
commit
4c98e0d4c6
57
.github/workflows/ci.yml
vendored
57
.github/workflows/ci.yml
vendored
@ -217,7 +217,7 @@ jobs:
|
|||||||
- run: git diff --exit-code
|
- run: git diff --exit-code
|
||||||
|
|
||||||
deploy_github_linux:
|
deploy_github_linux:
|
||||||
name: "Deploy Github: Linux"
|
name: "Deploy Github: linux-ia32, linux-x64"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [dart_tests, static_analysis]
|
needs: [dart_tests, static_analysis]
|
||||||
if: "startsWith(github.ref, 'refs/tags/') && github.repository == 'sass/dart-sass-embedded'"
|
if: "startsWith(github.ref, 'refs/tags/') && github.repository == 'sass/dart-sass-embedded'"
|
||||||
@ -234,7 +234,7 @@ jobs:
|
|||||||
env: {GH_BEARER_TOKEN: "${{ github.token }}"}
|
env: {GH_BEARER_TOKEN: "${{ github.token }}"}
|
||||||
|
|
||||||
deploy_github_linux_qemu:
|
deploy_github_linux_qemu:
|
||||||
name: "Deploy Github: Linux"
|
name: "Deploy Github: linux-${{ matrix.arch }}"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
@ -268,11 +268,20 @@ jobs:
|
|||||||
/bin/sh -c "cp -R . /tmp/workspace && cd /tmp/workspace && dart pub get && dart run grinder pkg-github-linux-${{ matrix.arch }}"
|
/bin/sh -c "cp -R . /tmp/workspace && cd /tmp/workspace && dart pub get && dart run grinder pkg-github-linux-${{ matrix.arch }}"
|
||||||
env: {GH_BEARER_TOKEN: "${{ github.token }}"}
|
env: {GH_BEARER_TOKEN: "${{ github.token }}"}
|
||||||
|
|
||||||
deploy_github_macos_x64:
|
deploy_github:
|
||||||
name: "Deploy Github: Mac OS (x64)"
|
name: "Deploy Github: ${{ matrix.platform }})"
|
||||||
runs-on: macos-latest
|
runs-on: ${{ matrix.runner }}
|
||||||
needs: [deploy_github_linux]
|
needs: [deploy_github_linux]
|
||||||
if: "startsWith(github.ref, 'refs/tags/') && github.repository == 'sass/dart-sass-embedded'"
|
if: "startsWith(github.ref, 'refs/tags/') && github.repository == 'sass/dart-sass-embedded'"
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- runner: macos-latest
|
||||||
|
platform: macos-x64
|
||||||
|
- runner: self-hosted
|
||||||
|
platform: macos-arm64
|
||||||
|
- runner: windows-latest
|
||||||
|
platform: windows
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -282,47 +291,13 @@ jobs:
|
|||||||
- run: dart pub get
|
- run: dart pub get
|
||||||
- run: dart run grinder protobuf
|
- run: dart run grinder protobuf
|
||||||
- name: Deploy
|
- name: Deploy
|
||||||
run: dart run grinder pkg-github-macos-x64
|
run: dart run grinder pkg-github-${{ matrix.platform }}
|
||||||
env: {GH_BEARER_TOKEN: "${{ github.token }}"}
|
|
||||||
|
|
||||||
deploy_github_macos_arm64:
|
|
||||||
name: "Deploy Github: Mac OS (arm64)"
|
|
||||||
runs-on: self-hosted
|
|
||||||
needs: [deploy_github_linux]
|
|
||||||
if: "startsWith(github.ref, 'refs/tags/') && github.repository == 'sass/dart-sass-embedded'"
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: arduino/setup-protoc@v1
|
|
||||||
with: { version: "${{ env.protoc_version }}", repo-token: "${{ github.token }}" }
|
|
||||||
- uses: dart-lang/setup-dart@v1
|
|
||||||
- run: dart pub get
|
|
||||||
- run: dart run grinder protobuf
|
|
||||||
- name: Deploy
|
|
||||||
run: dart run grinder pkg-github-macos-arm64
|
|
||||||
env: {GH_BEARER_TOKEN: "${{ github.token }}"}
|
|
||||||
|
|
||||||
deploy_github_windows:
|
|
||||||
name: "Deploy Github: Windows"
|
|
||||||
runs-on: windows-latest
|
|
||||||
needs: [deploy_github_linux]
|
|
||||||
if: "startsWith(github.ref, 'refs/tags/') && github.repository == 'sass/dart-sass-embedded'"
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: arduino/setup-protoc@v1
|
|
||||||
with: { version: "${{ env.protoc_version }}", repo-token: "${{ github.token }}" }
|
|
||||||
- uses: dart-lang/setup-dart@v1
|
|
||||||
- run: dart pub get
|
|
||||||
- run: dart run grinder protobuf
|
|
||||||
- name: Deploy
|
|
||||||
run: dart run grinder pkg-github-windows
|
|
||||||
env: {GH_BEARER_TOKEN: "${{ github.token }}"}
|
env: {GH_BEARER_TOKEN: "${{ github.token }}"}
|
||||||
|
|
||||||
release_embedded_host:
|
release_embedded_host:
|
||||||
name: "Release Embedded Host"
|
name: "Release Embedded Host"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [deploy_github_linux, deploy_github_linux_qemu, deploy_github_macos, deploy_github_windows]
|
needs: [deploy_github_linux, deploy_github_linux_qemu, deploy_github]
|
||||||
if: "startsWith(github.ref, 'refs/tags/') && github.repository == 'sass/dart-sass-embedded'"
|
if: "startsWith(github.ref, 'refs/tags/') && github.repository == 'sass/dart-sass-embedded'"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
Loading…
Reference in New Issue
Block a user