Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into inkwell
Browse files Browse the repository at this point in the history
  • Loading branch information
ghaith committed Oct 1, 2024
2 parents 2a2dbe1 + 156ac18 commit 68bfec5
Show file tree
Hide file tree
Showing 570 changed files with 23,378 additions and 3,856 deletions.
21 changes: 21 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Ignore target directory
target/

# Ignore any build artifacts
**/*.rs.bk

# Ignore any generated files
**/Cargo.lock
**/Cargo.toml.orig
**/Cargo.toml.bk

# Ignore any IDE-specific files
.vscode/
.idea/

# Ignore Dockerfile and dockerignore file
Dockerfile
.dockerignore

# Workflow
.github
91 changes: 91 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
name: Docker Image CI

on:
push:
branches: [ '*' ]

env:
IMAGE_NAME: rusty

jobs:
# Push image to GitHub Packages.
# See also https://docs.docker.com/docker-hub/builds/
build-linux:
runs-on: ${{ matrix.config.os }}
strategy:
matrix:
config:
- {
os: "ubuntu-latest",
version: "linux",
arch: "x86_64"
}
permissions:
packages: write
contents: read

steps:
- uses: actions/checkout@v3

- name: Build image
shell: bash
run: docker buildx build . --platform ${{matrix.config.version}}/${{matrix.config.arch}} --file Dockerfile --tag $IMAGE_NAME

- name: Log in to registry
if: ${{ github.event_name != 'pull_request' }}
# This is where you will update the PAT to GITHUB_TOKEN
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin

- name: Push image
shell: bash
if: ${{ github.event_name != 'pull_request' }}
run: |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
# Extract branch name
BRANCH_NAME=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Append branch name to image ID
IMAGE_ID=$IMAGE_ID-$BRANCH_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Use Docker `latest` tag convention
[ "$VERSION" == "main" ] && VERSION=latest
#Add the platform to the version
VERSION=$VERSION-${{ matrix.config.arch }}
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION
push-multiplatform:
name: Push multi platform
needs: build-linux
runs-on: ubuntu-latest
if: ${{ github.event_name != 'pull_request' }}
steps:
- name: Log in to registry
if: ${{ github.event_name != 'pull_request' }}
# This is where you will update the PAT to GITHUB_TOKEN
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin

- name: Get images
shell: bash
run: |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention
[ "$VERSION" == "main" ] && VERSION=latest
docker manifest create $IMAGE_ID:$VERSION $IMAGE_ID:$VERSION-arm64 $IMAGE_ID:$VERSION-x86_64
docker manifest push $IMAGE_ID:$VERSION
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
files: lcov.info

- name: Archive code coverage results
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: lcov.info
Loading

0 comments on commit 68bfec5

Please sign in to comment.