-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update build actions to avoid rate limits on upload artifacts
- Loading branch information
Showing
4 changed files
with
66 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 2021-2022 The MathWorks, Inc. | ||
--- | ||
name: "release-all-ubuntu" | ||
|
||
# Build and release all artifacts is either triggered manually or on the first day of the month to | ||
# ensure all artifacts are up-to-date with security and other patches to these distributions | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 3 1 * *' | ||
|
||
# Wish I could use a matrix strategy here - tried to and discovered that there are limitations | ||
# The strategy property is not supported in any job that calls a reusable workflow. | ||
# from https://docs.github.com/en/actions/using-workflows/reusing-workflows#limitations | ||
jobs: | ||
build-ubuntu-bionic: | ||
uses: ./.github/workflows/build-glibc-and-release.yaml | ||
with: | ||
dist-base: ubuntu | ||
dist-tag: bionic | ||
|
||
build-ubuntu-focal: | ||
uses: ./.github/workflows/build-glibc-and-release.yaml | ||
with: | ||
dist-base: ubuntu | ||
dist-tag: focal |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Copyright 2021-2022 The MathWorks, Inc. | ||
--- | ||
name: "release-debian-bullseye" | ||
|
||
# Build and release all artifacts is either triggered manually or on the first day of the month to | ||
# ensure all artifacts are up-to-date with security and other patches to these distributions | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 5 1 * *' | ||
|
||
# Wish I could use a matrix strategy here - tried to and discovered that there are limitations | ||
# The strategy property is not supported in any job that calls a reusable workflow. | ||
# from https://docs.github.com/en/actions/using-workflows/reusing-workflows#limitations | ||
jobs: | ||
build-debian-bullseye: | ||
uses: ./.github/workflows/build-glibc-and-release.yaml | ||
with: | ||
dist-base: debian | ||
dist-tag: bullseye |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Copyright 2021-2022 The MathWorks, Inc. | ||
--- | ||
name: "release-debian-buster" | ||
|
||
# Build and release all artifacts is either triggered manually or on the first day of the month to | ||
# ensure all artifacts are up-to-date with security and other patches to these distributions | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 7 1 * *' | ||
|
||
# Wish I could use a matrix strategy here - tried to and discovered that there are limitations | ||
# The strategy property is not supported in any job that calls a reusable workflow. | ||
# from https://docs.github.com/en/actions/using-workflows/reusing-workflows#limitations | ||
jobs: | ||
build-debian-buster: | ||
uses: ./.github/workflows/build-glibc-and-release.yaml | ||
with: | ||
dist-base: debian | ||
dist-tag: buster |