Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish RPM packages for Azure Linux in the release job #6774

Merged
merged 8 commits into from
Jan 30, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Reorder fix
  • Loading branch information
maxtropets committed Jan 30, 2025
commit cce769c66ec67ba00c7136b1f334875bbc0c88e1
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -110,14 +110,15 @@ jobs:
options: --user root --publish-all --cap-add NET_ADMIN --cap-add NET_RAW --cap-add SYS_PTRACE

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: "Install dependencies"
shell: bash
run: |
set -ex
./scripts/install-azure-linux-deps.sh
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: "Build Debug"
run: |
7 changes: 4 additions & 3 deletions .github/workflows/long-test.yml
Original file line number Diff line number Diff line change
@@ -288,14 +288,15 @@ jobs:
options: --user root --publish-all --cap-add NET_ADMIN --cap-add NET_RAW --cap-add SYS_PTRACE

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: "Install dependencies"
shell: bash
run: |
set -ex
./scripts/install-azure-linux-deps.sh
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: "Build Debug (Long Test)"
run: |
7 changes: 4 additions & 3 deletions .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
@@ -96,6 +96,10 @@ jobs:
options: "--user root --publish-all --cap-add NET_ADMIN --cap-add NET_RAW --cap-add SYS_PTRACE"

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: "Install dependencies"
if: ${{ matrix.platform.os == 'azure-linux' }}
shell: bash
@@ -104,9 +108,6 @@ jobs:
./scripts/install-azure-linux-deps.sh
# For packaging and release tests
tdnf -y install rpm-build
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: "Build Release ${{ matrix.platform.name }}"
shell: bash
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -92,15 +92,16 @@ jobs:
options: "--user root --publish-all --cap-add NET_ADMIN --cap-add NET_RAW --cap-add SYS_PTRACE"

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: "Install dependencies"
if: ${{ matrix.platform.os == 'azure-linux' }}
shell: bash
run: |
set -ex
./scripts/install-azure-linux-deps.sh
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: "Build Release ${{ matrix.platform.name }}"
shell: bash