Skip to content

Commit 63a9ffc

Browse files
committed
jq and removing duplication
1 parent b82e592 commit 63a9ffc

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

.github/workflows/BUILD-REUSABLE.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,12 @@ on:
3939
jobs:
4040

4141
build-redis:
42-
name: ${{inputs.osnick}} (${{inputs.arch}})
43-
4442
runs-on: ubuntu-latest
4543
container: ${{inputs.docker_image}}
44+
4645
steps:
46+
- name: install dependencies
47+
run: ${{inputs.deps}}
4748

4849
- name: determine if in fork
4950
id: iamafork
@@ -52,15 +53,11 @@ jobs:
5253
echo "am I fork: ${amfork}"
5354
echo "IAMAFORK=$amfork" >> $GITHUB_OUTPUT
5455
55-
- name: install dependencies
56-
run: ${{inputs.deps}}
57-
58-
- name: check out
59-
uses: actions/checkout@v4
56+
- uses: actions/checkout@v4
6057
with:
6158
path: redis-builder
6259

63-
- name: load versions
60+
- name: load envvars
6461
uses: c-py/action-dotenv-to-setenv@v5
6562
id: get_config_versions
6663
with:

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
ubuntu-bionic-x86-64:
2323
uses: ./.github/workflows/BUILD-REUSABLE.yml
2424
with:
25-
docker_image: ubuntu:bionic
25+
docker_image: ubuntu:18.04
2626
deps: apt-get update -qq && apt-get install -qqy build-essential libssl-dev python3 python3-pip jq wget
2727
osnick: ubuntu18.04
2828
secrets: inherit

0 commit comments

Comments
 (0)