Skip to content

Commit 6dac1c8

Browse files
committed
Remove xcp-ng-dev-env-create
Now that the images are easily available on ghcr.io. It makes the completion easier to use for the main tool. Signed-off-by: Gaëtan Lehmann <[email protected]>
1 parent c4112b4 commit 6dac1c8

16 files changed

+9
-15
lines changed

.github/workflows/docker.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
password: ${{ secrets.GITHUB_TOKEN }} # Automatically provided by GitHub
2323
- uses: docker/build-push-action@v5 # Using v5 for latest features
2424
with:
25-
context: ./src/xcp_ng_dev/
26-
file: ./src/xcp_ng_dev/files/Dockerfile-8.x
25+
context: ./container
26+
file: ./container/Dockerfile-8.x
2727
push: ${{ github.ref == 'refs/heads/master' }}
2828
tags: ghcr.io/${{ github.repository }}:8.2
2929
cache-from: type=gha,scope=${{ github.ref_name }}-82 # Cache layers to speed up builds
@@ -48,8 +48,8 @@ jobs:
4848
password: ${{ secrets.GITHUB_TOKEN }} # Automatically provided by GitHub
4949
- uses: docker/build-push-action@v5 # Using v5 for latest features
5050
with:
51-
context: ./src/xcp_ng_dev/
52-
file: ./src/xcp_ng_dev/files/Dockerfile-8.x
51+
context: ./container
52+
file: ./container/Dockerfile-8.x
5353
push: ${{ github.ref == 'refs/heads/master' }}
5454
tags: ghcr.io/${{ github.repository }}:8.3
5555
cache-from: type=gha,scope=${{ github.ref_name }}-83 # Cache layers to speed up builds
@@ -73,8 +73,8 @@ jobs:
7373
# password: ${{ secrets.GITHUB_TOKEN }} # Automatically provided by GitHub
7474
# - uses: docker/build-push-action@v5 # Using v5 for latest features
7575
# with:
76-
# context: ./src/xcp_ng_dev/
77-
# file: ./src/xcp_ng_dev/files/Dockerfile-9.x
76+
# context: ./container
77+
# file: ./container/Dockerfile-9.x
7878
# platforms: |
7979
# linux/amd64/v2
8080
# push: ${{ github.ref == 'refs/heads/master' }}
File renamed without changes.
File renamed without changes.

src/xcp_ng_dev/build.sh renamed to container/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ ALMA_VERSION=
7171
CENTOS_VERSION=
7272
case "$1" in
7373
9.*)
74-
DOCKERFILE=files/Dockerfile-9.x
74+
DOCKERFILE=Dockerfile-9.x
7575
ALMA_VERSION=10.0
7676
: ${PLATFORM:=linux/amd64/v2}
7777
;;
7878
8.*)
79-
DOCKERFILE=files/Dockerfile-8.x
79+
DOCKERFILE=Dockerfile-8.x
8080
: ${PLATFORM:=linux/amd64}
8181
;;
8282
*)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)