-
Notifications
You must be signed in to change notification settings - Fork 625
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: apostasie <spam_blackhole@farcloser.world>
- Loading branch information
Showing
1 changed file
with
130 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
name: prep | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- 'release/**' | ||
pull_request: | ||
paths-ignore: | ||
- '**.md' | ||
|
||
env: | ||
GO_VERSION: 1.23.x | ||
REGISTRY: ghcr.io | ||
BUSYBOX_VERSION: 1_36_0 | ||
REGISTRY_VERSION: 1_36_0 | ||
|
||
jobs: | ||
build-busybox: | ||
name: busybox | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- id: cache-busybox | ||
uses: actions/cache@v2 | ||
with: | ||
path: busybox.exe | ||
key: cache-busybox-${{ env.BUSYBOX_VERSION }} | ||
- uses: actions/checkout@v4 | ||
if: steps.cache-busybox.outputs.cache-hit != 'true' | ||
with: | ||
repository: rmyorston/busybox-w32 | ||
ref: ${{ env.BUSYBOX_VERSION }} | ||
fetch-depth: 1 | ||
- if: steps.cache-busybox.outputs.cache-hit != 'true' | ||
working-directory: busybox-w32 | ||
run: | | ||
sudo apt-get install gcc-mingw-w64 ncurses-dev | ||
make mingw64_defconfig | ||
make | ||
build-registry: | ||
name: registry | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- id: cache-registry | ||
uses: actions/cache@v2 | ||
with: | ||
path: ./build | ||
key: cache-registry-${{ env.REGISTRY_VERSION }} | ||
- uses: actions/checkout@v4 | ||
if: steps.cache-registry.outputs.cache-hit != 'true' | ||
with: | ||
repository: distribution/distribution | ||
ref: v2.8.3 | ||
path: src/github.com/distribution/distribution | ||
fetch-depth: 1 | ||
- uses: actions/setup-go@v5 | ||
if: steps.cache-registry.outputs.cache-hit != 'true' | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
check-latest: true | ||
cache: true | ||
- if: steps.cache-registry.outputs.cache-hit != 'true' | ||
working-directory: src/github.com/distribution/distribution | ||
run: | | ||
mkdir build | ||
VERSION=$(git describe --match 'v[0-9]*' --dirty='.m' --always --tags) | ||
REVISION=$(git rev-parse HEAD) | ||
GOOS=windows go build \ | ||
-trimpath \ | ||
-ldflags "-X github.com/distribution/distribution/v3/version.version=$VERSION -X github.com/distribution/distribution/v3/version.revision=$REVISION -s -w" \ | ||
-o ./build/registry ./cmd/registry | ||
cp ./cmd/registry/config-dev.yml ./build | ||
image-busybox: | ||
name: image-busybox | ||
runs-on: windows-2022 | ||
needs: build-busybox | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- id: cache-busybox | ||
uses: actions/cache@v2 | ||
with: | ||
path: busybox.exe | ||
key: cache-busybox-${{ env.BUSYBOX_VERSION }} | ||
- name: "Prep busybox image" | ||
run: | | ||
cat <<EOF > Dockerfile | ||
FROM mcr.microsoft.com/windows/nanoserver:ltsc2022 | ||
COPY busybox.exe C:\ | ||
RUN mkdir C:\tmp && mkdir C:\bin \ | ||
&& setx /M PATH "C:\bin;%PATH%" \ | ||
&& powershell C:\busybox.exe --list ^|%{$nul = cmd /c mklink C:\bin\$_.exe C:\busybox.exe} | ||
CMD ["sh"] | ||
EOF | ||
- name: "Build image" | ||
run: | | ||
docker buildx build create --name builder --use | ||
docker buildx build --tag busybox-windows -f Dockerfile . | ||
image-registry: | ||
name: image-registry | ||
runs-on: windows-2022 | ||
needs: build-registry | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- id: cache-registry | ||
uses: actions/cache@v2 | ||
with: | ||
path: ./build | ||
key: cache-registry-${{ env.REGISTRY_VERSION }} | ||
- name: "Prep registry image" | ||
run: | | ||
cat <<EOF > Dockerfile | ||
FROM mcr.microsoft.com/windows/nanoserver:ltsc2022 | ||
COPY ./build/registry /registry | ||
COPY ./build/config-dev.yml /config.yml | ||
EXPOSE 5000 | ||
ENTRYPOINT ["/registry"] | ||
CMD ["serve", "/config.yml"] | ||
EOF | ||
- name: "Build image" | ||
run: | | ||
docker buildx build create --name builder --use | ||
docker buildx build --tag registry-windows -f Dockerfile . |