Skip to content

Commit

Permalink
ci: add the scope for the test images
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Mar 24, 2024
1 parent 85853d5 commit 7a90df0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ jobs:
node ./dist/actions/setup-cpp.js --help
Docker:
name: Test-${{ matrix.container }}
name: Docker-${{ matrix.container.image }}
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
needs: [Build]
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion dev/docker/examples/arch-mingw.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#### Cross Building (example)
FROM setup-cpp-arch-mingw AS builder-mingw
FROM aminya/setup-cpp-arch-mingw AS builder-mingw

COPY ./dev/cpp_vcpkg_project /home/app
WORKDIR /home/app
Expand Down
2 changes: 1 addition & 1 deletion dev/docker/examples/arch.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#### Building (example)
FROM setup-cpp-arch-llvm AS builder
FROM aminya/setup-cpp-arch-llvm AS builder

COPY ./dev/cpp_vcpkg_project /home/app
WORKDIR /home/app
Expand Down
2 changes: 1 addition & 1 deletion dev/docker/examples/fedora-mingw.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#### Cross Building (example)
FROM setup-cpp-fedora-mingw AS builder-mingw
FROM aminya/setup-cpp-fedora-mingw AS builder-mingw

COPY ./dev/cpp_vcpkg_project /home/app
WORKDIR /home/app
Expand Down
2 changes: 1 addition & 1 deletion dev/docker/examples/fedora.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#### Building (example)
FROM setup-cpp-fedora-llvm AS builder
FROM aminya/setup-cpp-fedora-llvm AS builder

COPY ./dev/cpp_vcpkg_project /home/app
WORKDIR /home/app
Expand Down
2 changes: 1 addition & 1 deletion dev/docker/examples/ubuntu-mingw.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#### Cross Building (example)
FROM setup-cpp-ubuntu-mingw AS builder-mingw
FROM aminya/setup-cpp-ubuntu-mingw AS builder-mingw

COPY ./dev/cpp_vcpkg_project /home/app
WORKDIR /home/app
Expand Down
2 changes: 1 addition & 1 deletion dev/docker/examples/ubuntu.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#### Building (example)
FROM setup-cpp-ubuntu-llvm AS builder
FROM aminya/setup-cpp-ubuntu-llvm AS builder

COPY ./dev/cpp_vcpkg_project /home/app
WORKDIR /home/app
Expand Down

0 comments on commit 7a90df0

Please sign in to comment.