forked from ollama/ollama
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
83 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,83 @@ | ||
name: release testing artifacts | ||
|
||
on: | ||
push: | ||
branches: | ||
- testing | ||
|
||
jobs: | ||
build-container-image: | ||
strategy: | ||
matrix: | ||
runner: | ||
- ubuntu-24.04 | ||
runs-on: ${{ matrix.runner }} | ||
env: | ||
FINAL_IMAGE_REPO: ghcr.io/elastic/ollama/ollama | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: 'Install Docker' | ||
if: ${{ startsWith(matrix.runner, 'linux-arm64') }} | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y ca-certificates curl | ||
sudo install -m 0755 -d /etc/apt/keyrings | ||
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc | ||
sudo chmod a+r /etc/apt/keyrings/docker.asc | ||
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \ | ||
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \ | ||
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null | ||
sudo apt-get update | ||
sudo apt-get install -y docker-ce docker-ce-cli containerd.io | ||
sudo usermod -aG docker $USER | ||
sudo apt-get install acl | ||
sudo setfacl --modify user:$USER:rw /var/run/docker.sock | ||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: ${{ env.FINAL_IMAGE_REPO }} | ||
flavor: | | ||
latest=false | ||
tags: | | ||
type=ref,enable=true,priority=600,prefix=0.0.0-pr,suffix=,event=pr | ||
type=semver,pattern={{version}} | ||
- name: Set Version | ||
shell: bash | ||
run: | | ||
machine=$(uname -m) | ||
case ${machine} in | ||
x86_64) echo ARCH=amd64; echo PLATFORM_PAIR=linux-amd64 ;; | ||
aarch64) echo ARCH=arm64; echo PLATFORM_PAIR=linux-arm64 ;; | ||
esac >>$GITHUB_ENV | ||
echo GOFLAGS="'-ldflags=-w -s \"-X=github.com/ollama/ollama/version.Version=${{ env.DOCKER_METADATA_OUTPUT_VERSION }}\" \"-X=github.com/ollama/ollama/server.mode=release\"'" >>$GITHUB_ENV | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ vars.DOCKER_USER }} | ||
password: ${{ secrets.DOCKER_ACCESS_TOKEN }} | ||
- name: Build and push by digest | ||
id: build | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: "." | ||
platforms: linux/${{ env.ARCH }} | ||
build-args: | | ||
GOFLAGS | ||
outputs: type=image,name=${{ env.FINAL_IMAGE_REPO }},push-by-digest=true,name-canonical=true,push=true | ||
- name: Export digest | ||
run: | | ||
mkdir -p /tmp/digests | ||
digest="${{ steps.build.outputs.digest }}" | ||
touch "/tmp/digests/${digest#sha256:}" | ||
- name: Upload digest | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: digests-${{ env.PLATFORM_PAIR }} | ||
path: /tmp/digests/* | ||
if-no-files-found: error | ||
retention-days: 1 |