Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion .github/workflows/envoy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ jobs:
if: github.repository_owner == 'envoyproxy'
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- run: |
df -h
bazel build --config=ci //:envoy_versions
cat bazel-bin/envoy_versions.json | jq '.'

- run: |
bazel run --config=ci //tools/fetch -- -h
7 changes: 5 additions & 2 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,21 @@ jobs:
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- run: |
sudo mkdir -p /mnt/workspace/apt/import
sudo chown -R runner:runner /mnt/workspace
sudo mount -o bind /mnt/workspace/apt/import ./debs/import/
- run: |
mkdir ./debs/import
gsutil -mq rsync -r gs://envoy-apt-cache/debs ./debs/import/
ls -alh debs/import/

- run: |
. ./build-repository.sh
import_public_key
touch debs/excludes.txt
echo ${{ github.token }} > debs/token.txt
GNUPG_HOME="$(realpath ~/.gnupg)"
time bazel build "--sandbox_writable_path=${GNUPG_HOME}" --config=debs-ci //debs
time bazel build "--sandbox_writable_path=${GNUPG_HOME}" --verbose_failures --config=debs-ci //debs
env:
GITHUB_TOKEN: ${{ github.token }}

Expand Down
Loading