Skip to content

Commit 57ead95

Browse files
committed
Still trying to fix passing yamls
1 parent cd29784 commit 57ead95

36 files changed

Lines changed: 164 additions & 208 deletions

.github/workflows/build-wolfprovider.yml

Lines changed: 24 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ jobs:
3535
run: |
3636
apt-get update && apt-get install -y --no-install-recommends \
3737
build-essential \
38-
ccache \
3938
devscripts \
4039
debhelper \
4140
dh-autoreconf \
@@ -55,31 +54,31 @@ jobs:
5554
xxd
5655
5756
# Experimental: use ccache
58-
- name: Setup ccache
59-
uses: hendrikmuhs/ccache-action@v1.2
60-
id: cc
61-
with:
62-
create-symlink: true
57+
# - name: Setup ccache
58+
# uses: hendrikmuhs/ccache-action@v1.2
59+
# id: cc
60+
# with:
61+
# create-symlink: true
6362

64-
- name: Setup ccache environment variables
65-
run: |
66-
echo CC=ccache\ gcc >> "$GITHUB_ENV"
67-
echo CXX=ccache\ g++ >> "$GITHUB_ENV"
68-
echo CCACHE_BASEDIR=${GITHUB_WORKSPACE} >> "$GITHUB_ENV"
69-
echo CCACHE_NOHASHDIR=true >> "$GITHUB_ENV"
70-
echo CCACHE_COMPILERCHECK=content >> "$GITHUB_ENV"
71-
echo "CCACHE_DIR=${XDG_CACHE_HOME:-$HOME/.cache}/ccache" >> "$GITHUB_ENV"
72-
mkdir -p "${XDG_CACHE_HOME:-$HOME/.cache}/ccache"
73-
74-
- name: Sanity check ccache routing
75-
run: |
76-
set -x
77-
which -a gcc || true
78-
gcc --version | head -1
79-
ccache --zero-stats
80-
printf 'int main(){return 0;}\n' > t.c
81-
$CC -c t.c
82-
ccache -s
63+
# - name: Setup ccache environment variables
64+
# run: |
65+
# echo CC=ccache\ gcc >> "$GITHUB_ENV"
66+
# echo CXX=ccache\ g++ >> "$GITHUB_ENV"
67+
# echo CCACHE_BASEDIR=${GITHUB_WORKSPACE} >> "$GITHUB_ENV"
68+
# echo CCACHE_NOHASHDIR=true >> "$GITHUB_ENV"
69+
# echo CCACHE_COMPILERCHECK=content >> "$GITHUB_ENV"
70+
# echo "CCACHE_DIR=${XDG_CACHE_HOME:-$HOME/.cache}/ccache" >> "$GITHUB_ENV"
71+
# mkdir -p "${XDG_CACHE_HOME:-$HOME/.cache}/ccache"
72+
73+
# - name: Sanity check ccache routing
74+
# run: |
75+
# set -x
76+
# which -a gcc || true
77+
# gcc --version | head -1
78+
# ccache --zero-stats
79+
# printf 'int main(){return 0;}\n' > t.c
80+
# $CC -c t.c
81+
# ccache -s
8382

8483
- name: Checkout wolfProvider
8584
uses: actions/checkout@v4

.github/workflows/cjose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: cjose Tests
22

33
# START OF COMMON SECTION
44
on:
5-
push: [ '' ]
6-
# branches: [ 'master', 'main', 'release/**' ]
7-
# pull_request:
8-
# branches: [ '*' ]
5+
push:
6+
branches: [ 'master', 'main', 'release/**' ]
7+
pull_request:
8+
branches: [ '*' ]
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/cmdline.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Command Line Tests
22

33
# START OF COMMON SECTION
44
on:
5-
push: [ '' ]
6-
# branches: [ 'master', 'main', 'release/**' ]
7-
# pull_request:
8-
# branches: [ '*' ]
5+
push:
6+
branches: [ 'master', 'main', 'release/**' ]
7+
pull_request:
8+
branches: [ '*' ]
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/codespell.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Codespell test
22

33
# START OF COMMON SECTION
44
on:
5-
push: [ '' ]
6-
# branches: [ 'master', 'main', 'release/**' ]
7-
# pull_request:
8-
# branches: [ '*' ]
5+
push:
6+
branches: [ 'master', 'main', 'release/**' ]
7+
pull_request:
8+
branches: [ '*' ]
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/curl.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Curl Tests
22

33
# START OF COMMON SECTION
44
on:
5-
push: [ '' ]
6-
# branches: [ 'master', 'main', 'release/**' ]
7-
# pull_request:
8-
# branches: [ '*' ]
5+
push:
6+
branches: [ 'master', 'main', 'release/**' ]
7+
pull_request:
8+
branches: [ '*' ]
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/grpc.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: gRPC Tests
22

33
# START OF COMMON SECTION
44
on:
5-
push: [ '' ]
6-
# branches: [ 'master', 'main', 'release/**' ]
7-
# pull_request:
8-
# branches: [ '*' ]
5+
push:
6+
branches: [ 'master', 'main', 'release/**' ]
7+
pull_request:
8+
branches: [ '*' ]
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/iperf.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: iperf Tests
22

33
# START OF COMMON SECTION
44
on:
5-
push: [ '' ]
6-
# branches: [ 'master', 'main', 'release/**' ]
7-
# pull_request:
8-
# branches: [ '*' ]
5+
push:
6+
branches: [ 'master', 'main', 'release/**' ]
7+
pull_request:
8+
branches: [ '*' ]
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/ipmitool.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: IPMItool Tests
22

33
# START OF COMMON SECTION
44
on:
5-
push: [ '' ]
6-
# branches: [ 'master', 'main', 'release/**' ]
7-
# pull_request:
8-
# branches: [ '*' ]
5+
push:
6+
branches: [ 'master', 'main', 'release/**' ]
7+
pull_request:
8+
branches: [ '*' ]
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/krb5.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: KRB5 Tests
22

33
# START OF COMMON SECTION
44
on:
5-
push: [ '' ]
6-
# branches: [ 'master', 'main', 'release/**' ]
7-
# pull_request:
8-
# branches: [ '*' ]
5+
push:
6+
branches: [ 'master', 'main', 'release/**' ]
7+
pull_request:
8+
branches: [ '*' ]
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/libcryptsetup.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Libcryptsetup Tests
22

33
# START OF COMMON SECTION
44
on:
5-
push: [ '' ]
6-
# branches: [ 'master', 'main', 'release/**' ]
7-
# pull_request:
8-
# branches: [ '*' ]
5+
push:
6+
branches: [ 'master', 'main', 'release/**' ]
7+
pull_request:
8+
branches: [ '*' ]
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref }}

0 commit comments

Comments
 (0)