forked from saltstack/salt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '3006.x' into ccov_pillar
- Loading branch information
Showing
60 changed files
with
1,435 additions
and
889 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
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,81 @@ | ||
--- | ||
name: Build Packaging Dependencies Onedir | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
salt-version: | ||
type: string | ||
required: true | ||
description: The Salt version to set prior to building packages. | ||
github-hosted-runners: | ||
type: boolean | ||
required: true | ||
self-hosted-runners: | ||
type: boolean | ||
required: true | ||
cache-seed: | ||
required: true | ||
type: string | ||
description: Seed used to invalidate caches | ||
relenv-version: | ||
required: true | ||
type: string | ||
description: The version of relenv to use | ||
python-version: | ||
required: true | ||
type: string | ||
description: The version of python to use with relenv | ||
|
||
env: | ||
RELENV_DATA: "${{ github.workspace }}/.relenv" | ||
COLUMNS: 190 | ||
AWS_MAX_ATTEMPTS: "10" | ||
AWS_RETRY_MODE: "adaptive" | ||
PIP_INDEX_URL: https://pypi-proxy.saltstack.net/root/local/+simple/ | ||
PIP_EXTRA_INDEX_URL: https://pypi.org/simple | ||
|
||
jobs: | ||
|
||
build-deps-linux: | ||
name: Linux | ||
if: ${{ inputs.self-hosted-runners }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
arch: | ||
- x86_64 | ||
- aarch64 | ||
runs-on: | ||
- self-hosted | ||
- linux | ||
- ${{ matrix.arch }} | ||
steps: | ||
|
||
- name: "Throttle Builds" | ||
shell: bash | ||
run: | | ||
t=$(python3 -c 'import random, sys; sys.stdout.write(str(random.randint(1, 15)))'); echo "Sleeping $t seconds"; sleep "$t" | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Relenv | ||
id: setup-relenv | ||
uses: ./.github/actions/setup-relenv | ||
with: | ||
platform: linux | ||
arch: ${{ matrix.arch }} | ||
version: ${{ inputs.relenv-version }} | ||
cache-seed: ${{ inputs.cache-seed }} | ||
python-version: ${{ inputs.python-version }} | ||
|
||
- name: Setup Python Tools Scripts | ||
uses: ./.github/actions/setup-python-tools-scripts | ||
|
||
- name: Install Salt Packaging Dependencies into Relenv Onedir | ||
uses: ./.github/actions/build-onedir-deps | ||
with: | ||
platform: linux | ||
arch: ${{ matrix.arch }} | ||
python-version: "${{ inputs.python-version }}" | ||
cache-prefix: ${{ inputs.cache-seed }}|relenv|${{ steps.setup-relenv.outputs.version }} |
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,83 @@ | ||
--- | ||
name: Build Packaging Dependencies Onedir | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
salt-version: | ||
type: string | ||
required: true | ||
description: The Salt version to set prior to building packages. | ||
github-hosted-runners: | ||
type: boolean | ||
required: true | ||
self-hosted-runners: | ||
type: boolean | ||
required: true | ||
cache-seed: | ||
required: true | ||
type: string | ||
description: Seed used to invalidate caches | ||
relenv-version: | ||
required: true | ||
type: string | ||
description: The version of relenv to use | ||
python-version: | ||
required: true | ||
type: string | ||
description: The version of python to use with relenv | ||
|
||
env: | ||
RELENV_DATA: "${{ github.workspace }}/.relenv" | ||
COLUMNS: 190 | ||
AWS_MAX_ATTEMPTS: "10" | ||
AWS_RETRY_MODE: "adaptive" | ||
PIP_INDEX_URL: https://pypi-proxy.saltstack.net/root/local/+simple/ | ||
PIP_EXTRA_INDEX_URL: https://pypi.org/simple | ||
|
||
jobs: | ||
|
||
build-deps-macos: | ||
name: macOS | ||
if: ${{ inputs.github-hosted-runners }} | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 2 | ||
matrix: | ||
arch: | ||
- x86_64 | ||
runs-on: macos-12 | ||
steps: | ||
|
||
- name: "Throttle Builds" | ||
shell: bash | ||
run: | | ||
t=$(python3 -c 'import random, sys; sys.stdout.write(str(random.randint(1, 15)))'); echo "Sleeping $t seconds"; sleep "$t" | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Setup Relenv | ||
id: setup-relenv | ||
uses: ./.github/actions/setup-relenv | ||
with: | ||
platform: darwin | ||
arch: ${{ matrix.arch }} | ||
version: ${{ inputs.relenv-version }} | ||
cache-seed: ${{ inputs.cache-seed }} | ||
python-version: ${{ inputs.python-version }} | ||
|
||
- name: Setup Python Tools Scripts | ||
uses: ./.github/actions/setup-python-tools-scripts | ||
|
||
- name: Install Salt Packaging Dependencies into Relenv Onedir | ||
uses: ./.github/actions/build-onedir-deps | ||
with: | ||
platform: darwin | ||
arch: ${{ matrix.arch }} | ||
python-version: "${{ inputs.python-version }}" | ||
cache-prefix: ${{ inputs.cache-seed }}|relenv|${{ steps.setup-relenv.outputs.version }} |
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,84 @@ | ||
--- | ||
name: Build Packaging Dependencies Onedir | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
salt-version: | ||
type: string | ||
required: true | ||
description: The Salt version to set prior to building packages. | ||
github-hosted-runners: | ||
type: boolean | ||
required: true | ||
self-hosted-runners: | ||
type: boolean | ||
required: true | ||
cache-seed: | ||
required: true | ||
type: string | ||
description: Seed used to invalidate caches | ||
relenv-version: | ||
required: true | ||
type: string | ||
description: The version of relenv to use | ||
python-version: | ||
required: true | ||
type: string | ||
description: The version of python to use with relenv | ||
|
||
env: | ||
RELENV_DATA: "${{ github.workspace }}/.relenv" | ||
COLUMNS: 190 | ||
AWS_MAX_ATTEMPTS: "10" | ||
AWS_RETRY_MODE: "adaptive" | ||
PIP_INDEX_URL: https://pypi-proxy.saltstack.net/root/local/+simple/ | ||
PIP_EXTRA_INDEX_URL: https://pypi.org/simple | ||
|
||
jobs: | ||
|
||
build-deps-windows: | ||
name: Windows | ||
if: ${{ inputs.github-hosted-runners }} | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 2 | ||
matrix: | ||
arch: | ||
- x86 | ||
- amd64 | ||
runs-on: windows-latest | ||
steps: | ||
|
||
- name: "Throttle Builds" | ||
shell: bash | ||
run: | | ||
t=$(python3 -c 'import random, sys; sys.stdout.write(str(random.randint(1, 15)))'); echo "Sleeping $t seconds"; sleep "$t" | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Setup Relenv | ||
id: setup-relenv | ||
uses: ./.github/actions/setup-relenv | ||
with: | ||
platform: windows | ||
arch: ${{ matrix.arch }} | ||
version: ${{ inputs.relenv-version }} | ||
cache-seed: ${{ inputs.cache-seed }} | ||
python-version: ${{ inputs.python-version }} | ||
|
||
- name: Setup Python Tools Scripts | ||
uses: ./.github/actions/setup-python-tools-scripts | ||
|
||
- name: Install Salt Packaging Dependencies into Relenv Onedir | ||
uses: ./.github/actions/build-onedir-deps | ||
with: | ||
platform: windows | ||
arch: ${{ matrix.arch }} | ||
python-version: "${{ inputs.python-version }}" | ||
cache-prefix: ${{ inputs.cache-seed }}|relenv|${{ steps.setup-relenv.outputs.version }} |
Oops, something went wrong.