Inital bot files
Some checks failed
CI / Build (ubuntu-latest) (push) Waiting to run
CI / Build (windows-latest) (push) Waiting to run
CI / Flake checks (push) Waiting to run
CI / CI Release gate (push) Blocked by required conditions
Docker / Build image (push) Waiting to run
Docker / Docker Release gate (push) Blocked by required conditions
Docker / Push image (push) Blocked by required conditions
Clippy / Run scan (push) Has been cancelled
Some checks failed
CI / Build (ubuntu-latest) (push) Waiting to run
CI / Build (windows-latest) (push) Waiting to run
CI / Flake checks (push) Waiting to run
CI / CI Release gate (push) Blocked by required conditions
Docker / Build image (push) Waiting to run
Docker / Docker Release gate (push) Blocked by required conditions
Docker / Push image (push) Blocked by required conditions
Clippy / Run scan (push) Has been cancelled
This commit is contained in:
commit
6bac95dce6
91 changed files with 4422 additions and 0 deletions
115
.github/workflows/docker.yml
vendored
Normal file
115
.github/workflows/docker.yml
vendored
Normal file
|
@ -0,0 +1,115 @@
|
|||
name: Docker
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build image
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
arch: [amd64, arm64]
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install Nix
|
||||
uses: DeterminateSystems/nix-installer-action@v17
|
||||
|
||||
- name: Setup Nix cache
|
||||
uses: DeterminateSystems/magic-nix-cache-action@v9
|
||||
|
||||
- name: Build Docker image
|
||||
id: build
|
||||
env:
|
||||
ARCH: ${{ matrix.arch }}
|
||||
run: |
|
||||
nix build --print-build-logs .#container-"$ARCH"
|
||||
[ ! -L result ] && exit 1
|
||||
echo "path=$(readlink -f result)" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Upload image
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: container-${{ matrix.arch }}
|
||||
path: ${{ steps.build.outputs.path }}
|
||||
if-no-files-found: error
|
||||
retention-days: 3
|
||||
|
||||
# Make sure all above jobs finished successfully
|
||||
release-gate:
|
||||
name: Docker Release gate
|
||||
needs: [build]
|
||||
|
||||
if: ${{ always() }}
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Exit with error
|
||||
if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
|
||||
run: exit 1
|
||||
|
||||
push:
|
||||
name: Push image
|
||||
needs: build
|
||||
|
||||
if: ${{ github.event_name == 'push' }}
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
permissions:
|
||||
packages: write
|
||||
|
||||
env:
|
||||
REGISTRY: ghcr.io
|
||||
USERNAME: ${{ github.actor }}
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Determine image name
|
||||
run: |
|
||||
echo "IMAGE_NAME=${REPOSITORY,,}" >> "$GITHUB_ENV"
|
||||
env:
|
||||
REPOSITORY: ${{ github.repository }}
|
||||
|
||||
- name: Download images
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
path: images
|
||||
|
||||
- name: Login to registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ${{ env.REGISTRY }}
|
||||
username: ${{ env.USERNAME }}
|
||||
password: ${{ github.token }}
|
||||
|
||||
- name: Push to registry
|
||||
env:
|
||||
TAG: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest
|
||||
run: |
|
||||
set -eu
|
||||
|
||||
architectures=("amd64" "arm64")
|
||||
for arch in "${architectures[@]}"; do
|
||||
docker load < images/container-"$arch"/*.tar.gz
|
||||
docker tag refraction:latest-"$arch" "$TAG"-"$arch"
|
||||
docker push "$TAG"-"$arch"
|
||||
done
|
||||
|
||||
docker manifest create "$TAG" \
|
||||
--amend "$TAG"-amd64 \
|
||||
--amend "$TAG"-arm64
|
||||
|
||||
docker manifest push "$TAG"
|
Loading…
Add table
Add a link
Reference in a new issue