Skip to content

Commit 4c0dcce

Browse files
authored
Rename CI job & add Docker cache (#119)
* Rename CI job * Added cache
1 parent eeb7282 commit 4c0dcce

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ jobs:
4343
- name: Checkout code
4444
uses: actions/checkout@v2
4545

46+
- uses: satackey/[email protected]
47+
continue-on-error: true
48+
4649
- name: Build docker images
4750
run: layer=${{ matrix.layer }} make docker-images
4851

.github/workflows/deploy-docker.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,15 @@ on:
99

1010
jobs:
1111
publish:
12-
name: Building images
12+
name: Deploy images
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v2
1717

18+
- uses: satackey/[email protected]
19+
continue-on-error: true
20+
1821
- name: Get the version
1922
id: get_version
2023
run: |

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ jobs:
2323
with:
2424
fetch-depth: 0
2525

26+
- uses: satackey/[email protected]
27+
continue-on-error: true
28+
2629
- name: Download dependencies
2730
run: |
2831
composer update --no-interaction --prefer-dist --optimize-autoloader --prefer-stable

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SHELL := /bin/bash
22
layer ?= *
3-
parallel = $(if $(shell which parallel),true,false)
3+
parallel ?= $(if $(shell which parallel),true,false)
44
resolve_php_versions = $(or $(php_versions),`jq -r '.php | join(" ")' ${1}/config.json`)
55
66
define generate_list

0 commit comments

Comments
 (0)