Skip to content

Commit ad48cce

Browse files
committed
fix build
1 parent e105ab7 commit ad48cce

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/hadolint.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ jobs:
1414
- uses: hadolint/hadolint-action@v3.1.0
1515
with:
1616
dockerfile: Dockerfile
17-
failure-threshold: warning
17+
failure-threshold: error
18+
recursive: true

WORKSPACE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
workspace(name = "sylius-php")
22

3-
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
4-
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file")
3+
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file")
54

65
http_archive(
76
name = "io_bazel_rules_docker",

php/BUILD

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
package(default_visibility = ["//visibility:public"])
2-
3-
load("@io_bazel_rules_docker//contrib:test.bzl", "container_test")
41
load("@io_bazel_rules_docker//container:import.bzl", "container_import")
2+
load("@io_bazel_rules_docker//contrib:test.bzl", "container_test")
53
load(":php-arch.bzl", "ARCHITECTURES")
64
load(":php-version.bzl", "PHP_VERSION")
75

6+
package(default_visibility = ["//visibility:public"])
7+
88
[
99
container_test(
1010
name = "php" + PHP_VERSION + "_" + arch + "_test",

0 commit comments

Comments
 (0)