-
Notifications
You must be signed in to change notification settings - Fork 3
56 lines (51 loc) · 1.69 KB
/
envoy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Envoy
permissions:
contents: read
on:
pull_request:
push:
branches:
- main
concurrency:
group: >-
${{ github.event.inputs.head_ref || github.run_id }}
jobs:
envoy:
runs-on: ubuntu-24.04
if: github.repository_owner == 'envoyproxy'
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- id: versions
run: |
bazel build --config=ci //debs:minor_versions
VERSION_HASH="$(cat bazel-bin/debs/minor_versions.txt | sha256sum | cut -f1)"
echo "hash=${VERSION_HASH}" >> "$GITHUB_OUTPUT"
- uses: actions/cache/restore@v4
with:
key: ${{ steps.versions.outputs.hash }}
path: /tmp/repository
- run: |
mkdir -p /tmp/repository/v1.28.3
ls /tmp/repository | grep -E '^v[0-9]+\.[0-9]+\.[0-9]+' | sort -u > debs/custom-excludes.txt
echo $GITHUB_TOKEN > debs/token.txt
bazel run \
--config=ci \
--//debs:excludes=//debs:custom-excludes.txt \
--//debs:token=//debs:token.txt \
--//tools/tarball:target=//debs \
//tools/tarball:unpack \
/tmp/repository
tar tf bazel-bin/debs/debs.tar.gz
ls -alh bazel-bin/debs/debs.tar.gz
ORIGINAL=$(cat debs/custom-excludes.txt | wc -l)
UPDATED=$(ls /tmp/repository | grep -E '^v[0-9]+\.[0-9]+\.[0-9]+' | wc -l)
if [[ "$ORIGINAL" != "$UPDATED" ]]; then
echo "changed=1" >> $GITHUB_OUTPUT
fi
rm -rf debs/token.txt
id: update
- uses: actions/cache/save@v4
if: ${{ steps.update.outputs.changed }}
with:
key: ${{ steps.versions.outputs.hash }}
path: /tmp/repository