Skip to content

Commit

Permalink
Systemd container rename
Browse files Browse the repository at this point in the history
  • Loading branch information
dwoz committed Nov 8, 2024
1 parent 742a9dd commit 0fb2ff1
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1104,7 +1104,7 @@ jobs:
distro-slug: ubuntu-22.04
nox-session: ci-test-onedir
platform: linux
container: ghcr.io/saltstack/salt-ci-containers/testing:ubuntu-22.04-systemd
container: ghcr.io/saltstack/salt-ci-containers/testing:systemd-ubuntu-22.04
arch: x86_64
salt-version: "${{ needs.prepare-workflow.outputs.salt-version }}"
pkg-type: deb
Expand All @@ -1126,7 +1126,7 @@ jobs:
distro-slug: ubuntu-22.04-arm64
nox-session: ci-test-onedir
platform: linux
container: ghcr.io/saltstack/salt-ci-containers/testing:ubuntu-22.04-systemd
container: ghcr.io/saltstack/salt-ci-containers/testing:systemd-ubuntu-22.04
arch: arm64
salt-version: "${{ needs.prepare-workflow.outputs.salt-version }}"
pkg-type: deb
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,7 @@ jobs:
distro-slug: ubuntu-22.04
nox-session: ci-test-onedir
platform: linux
container: ghcr.io/saltstack/salt-ci-containers/testing:ubuntu-22.04-systemd
container: ghcr.io/saltstack/salt-ci-containers/testing:systemd-ubuntu-22.04
arch: x86_64
salt-version: "${{ needs.prepare-workflow.outputs.salt-version }}"
pkg-type: deb
Expand All @@ -1249,7 +1249,7 @@ jobs:
distro-slug: ubuntu-22.04-arm64
nox-session: ci-test-onedir
platform: linux
container: ghcr.io/saltstack/salt-ci-containers/testing:ubuntu-22.04-systemd
container: ghcr.io/saltstack/salt-ci-containers/testing:systemd-ubuntu-22.04
arch: arm64
salt-version: "${{ needs.prepare-workflow.outputs.salt-version }}"
pkg-type: deb
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,7 @@ jobs:
distro-slug: ubuntu-22.04
nox-session: ci-test-onedir
platform: linux
container: ghcr.io/saltstack/salt-ci-containers/testing:ubuntu-22.04-systemd
container: ghcr.io/saltstack/salt-ci-containers/testing:systemd-ubuntu-22.04
arch: x86_64
salt-version: "${{ needs.prepare-workflow.outputs.salt-version }}"
pkg-type: deb
Expand All @@ -1165,7 +1165,7 @@ jobs:
distro-slug: ubuntu-22.04-arm64
nox-session: ci-test-onedir
platform: linux
container: ghcr.io/saltstack/salt-ci-containers/testing:ubuntu-22.04-systemd
container: ghcr.io/saltstack/salt-ci-containers/testing:systemd-ubuntu-22.04
arch: arm64
salt-version: "${{ needs.prepare-workflow.outputs.salt-version }}"
pkg-type: deb
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,7 @@ jobs:
distro-slug: ubuntu-22.04
nox-session: ci-test-onedir
platform: linux
container: ghcr.io/saltstack/salt-ci-containers/testing:ubuntu-22.04-systemd
container: ghcr.io/saltstack/salt-ci-containers/testing:systemd-ubuntu-22.04
arch: x86_64
salt-version: "${{ needs.prepare-workflow.outputs.salt-version }}"
pkg-type: deb
Expand All @@ -1231,7 +1231,7 @@ jobs:
distro-slug: ubuntu-22.04-arm64
nox-session: ci-test-onedir
platform: linux
container: ghcr.io/saltstack/salt-ci-containers/testing:ubuntu-22.04-systemd
container: ghcr.io/saltstack/salt-ci-containers/testing:systemd-ubuntu-22.04
arch: arm64
salt-version: "${{ needs.prepare-workflow.outputs.salt-version }}"
pkg-type: deb
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-packages-action-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ jobs:
# chmod +x /usr/bin/systemctl
- name: install pkg test
run: |
dpkg -i ./artifacts/pkg/salt-common-${{ inputs.salt-version}}_${{ inputs.arch }}.deb ./artifacts/pkg/salt-master-${{ inputs.salt-version}}_${{ inputs.arch }}.deb
dpkg -i ./artifacts/pkg/salt-common-${{ inputs.salt-version}}_${{ inputs.arch == 'x86_64' && 'amd64' || 'arm64' }}.deb ./artifacts/pkg/salt-master-${{ inputs.salt-version}}_${{ inputs.arch == 'x86_64' && 'amd64' || 'arm64' }}.deb
- name: Show System Info
env:
Expand Down
4 changes: 2 additions & 2 deletions tools/precommit/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,14 +441,14 @@ def generate_workflows(ctx: Context):
display_name="Ubuntu 22.04",
arch="x86_64",
pkg_type="deb",
container="ghcr.io/saltstack/salt-ci-containers/testing:ubuntu-22.04-systemd",
container="ghcr.io/saltstack/salt-ci-containers/testing:systemd-ubuntu-22.04",
),
Linux(
slug="ubuntu-22.04-arm64",
display_name="Ubuntu 22.04 Arm64",
arch="arm64",
pkg_type="deb",
container="ghcr.io/saltstack/salt-ci-containers/testing:ubuntu-22.04-systemd",
container="ghcr.io/saltstack/salt-ci-containers/testing:systemd-ubuntu-22.04",
),
Linux(
slug="ubuntu-24.04",
Expand Down

0 comments on commit 0fb2ff1

Please sign in to comment.