-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add configuration tto run proxy with zstd package to test streami…
…ng with proxy
- Loading branch information
1 parent
8cbf72e
commit 2ff0598
Showing
4 changed files
with
49 additions
and
5 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,7 @@ | ||
# Perform all necessary steps to update the PR checks | ||
update-pr-checks: | ||
python3 -m venv env | ||
env/bin/activate | ||
pip3 install ruamel.yaml | ||
python3 sync.py | ||
git apply pr-checks.patch |
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,18 @@ | ||
diff --git a/.github/workflows/__test-proxy.yml b/.github/workflows/__test-proxy.yml | ||
index b6831b7a0..3be758b02 100644 | ||
--- a/.github/workflows/__test-proxy.yml | ||
+++ b/.github/workflows/__test-proxy.yml | ||
@@ -45,6 +45,13 @@ jobs: | ||
python-version: '3.11' | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
+ - name: Set up GitHub CLI | ||
+ run: | | ||
+ curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg | ||
+ sudo apt-key add /usr/share/keyrings/githubcli-archive-keyring.gpg | ||
+ sudo apt-add-repository https://cli.github.com/packages | ||
+ sudo apt-get update | ||
+ sudo apt-get install gh | ||
- name: Prepare test | ||
id: prepare-test | ||
uses: ./.github/actions/prepare-test |