Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/buildyetusondemand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
env:
HEAD_REF: ${{ github.event.pull_request.head.ref }}
REPO_NAME: ${{ github.event.repository.full_name }}
IMG_NAME: "lfedge/eve-yetus"
IMG_NAME: "renezededa/eve-yetus"
IMG_TAG: "0.15.1-eve-1"
strategy:
fail-fast: false
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
if: ${{ env.REPO_NAME == 'lf-edge/eve' }}
if: ${{ env.REPO_NAME == 'rene/eve' }}
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
with:
username: ${{ secrets.RELEASE_DOCKERHUB_ACCOUNT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 0
- name: Login to Docker Hub
if: ${{ github.event.repository.full_name == 'lf-edge/eve' }}
if: ${{ github.event.repository.full_name == 'rene/eve' }}
run: | # Runners must provide default credentials
docker login
- name: Test
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on: # yamllint disable-line rule:truthy
jobs:
# 1) non-ARM packages, fully parallel
packages-non-arm:
if: github.event.repository.full_name == 'lf-edge/eve'
if: github.event.repository.full_name == 'rene/eve'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:

# 2) ARM packages, serialized
packages-arm:
if: github.event.repository.full_name == 'lf-edge/eve'
if: github.event.repository.full_name == 'rene/eve'
runs-on: ${{ matrix.os }}
timeout-minutes: 1440 # It takes more time when building arm64 on an amd64 runner
strategy:
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
echo "TAG=$(echo "$REF" | sed -e 's#^.*/##' -e 's#master#snapshot#' -e 's#main#snapshot#')" >> "$GITHUB_ENV"

- name: Login to Docker Hub (build)
if: ${{ github.event.repository.full_name == 'lf-edge/eve' }}
if: ${{ github.event.repository.full_name == 'rene/eve' }}
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
with:
username: ${{ secrets.DOCKERHUB_PULL_USER }}
Expand All @@ -197,7 +197,7 @@ jobs:
done
if [ -z "$SUCCESS" ]; then echo "::error::failed to build packages" && exit 1; fi
- name: Login to Docker Hub (push)
if: ${{ github.event.repository.full_name == 'lf-edge/eve' }}
if: ${{ github.event.repository.full_name == 'rene/eve' }}
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
with:
username: ${{ secrets.RELEASE_DOCKERHUB_ACCOUNT }}
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:

# 3) downstream jobs depend on both package jobs
eve:
if: github.event.repository.full_name == 'lf-edge/eve'
if: github.event.repository.full_name == 'rene/eve'
needs: [packages-non-arm, packages-arm]
runs-on: zededa-ubuntu-2204
strategy:
Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:
rm -rf ~/.linuxkit || :

manifest:
if: github.event.repository.full_name == 'lf-edge/eve'
if: github.event.repository.full_name == 'rene/eve'
needs: [packages-non-arm, packages-arm]
runs-on: zededa-ubuntu-2204
steps:
Expand All @@ -313,9 +313,9 @@ jobs:
dockerhub-account: ${{ secrets.RELEASE_DOCKERHUB_ACCOUNT }}

trigger_assets:
if: ${{ (startsWith(github.ref, 'refs/tags/')) && (github.event.repository.full_name == 'lf-edge/eve') }}
if: ${{ (startsWith(github.ref, 'refs/tags/')) && (github.event.repository.full_name == 'rene/eve') }}
needs: [manifest, eve]
uses: lf-edge/eve/.github/workflows/assets.yml@master
uses: rene/eve/.github/workflows/assets.yml@master
secrets:
DOCKERHUB_PULL_TOKEN: ${{ secrets.DOCKERHUB_PULL_TOKEN }}
DOCKERHUB_PULL_USER: ${{ secrets.DOCKERHUB_PULL_USER }}
Expand Down
4 changes: 2 additions & 2 deletions mk/linuxkit.mk
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ LINUXKIT_SOURCE ?= https://github.com/linuxkit/linuxkit

# LINUXKIT_GIT_REF must be a commit hash (reproducible, no ls-remote needed).
# Update by running: git ls-remote https://github.com/linuxkit/linuxkit master
LINUXKIT_GIT_URL ?= https://github.com/linuxkit/linuxkit
LINUXKIT_GIT_REF ?= 4cfb70d3cc9256024bb0d4de760c631df0ad06f6
LINUXKIT_GIT_URL ?= https://github.com/europaul/linuxkit
LINUXKIT_GIT_REF ?= 420d550a9e0df323ce01e0324dfb6053468c4814
# Optional local source tree — takes priority over LINUXKIT_GIT_URL.
# make LINUXKIT_SRC=/path/to/linuxkit <target>
LINUXKIT_SRC ?=
Expand Down
2 changes: 1 addition & 1 deletion pkg/wwan/mmagent/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ require (
github.com/containerd/typeurl/v2 v2.2.0 // indirect
github.com/cyphar/filepath-securejoin v0.6.0 // indirect
github.com/distribution/reference v0.6.0 // indirect
github.com/docker/cli v25.0.3+incompatible // indirect
github.com/docker/cli v29.2.0+incompatible // indirect
github.com/docker/distribution v2.8.3+incompatible // indirect
github.com/docker/docker v28.3.3+incompatible // indirect
github.com/docker/docker-credential-helpers v0.8.1 // indirect
Expand Down
4 changes: 2 additions & 2 deletions pkg/wwan/mmagent/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ github.com/distribution/distribution/v3 v3.0.0-20221208165359-362910506bc2 h1:aB
github.com/distribution/distribution/v3 v3.0.0-20221208165359-362910506bc2/go.mod h1:WHNsWjnIn2V1LYOrME7e8KxSeKunYHsxEm4am0BUtcI=
github.com/distribution/reference v0.6.0 h1:0IXCQ5g4/QMHHkarYzh5l+u8T3t73zM5QvfrDyIgxBk=
github.com/distribution/reference v0.6.0/go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E=
github.com/docker/cli v25.0.3+incompatible h1:KLeNs7zws74oFuVhgZQ5ONGZiXUUdgsdy6/EsX/6284=
github.com/docker/cli v25.0.3+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
github.com/docker/cli v29.2.0+incompatible h1:9oBd9+YM7rxjZLfyMGxjraKBKE4/nVyvVfN4qNl9XRM=
github.com/docker/cli v29.2.0+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=
github.com/docker/distribution v2.8.3+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
github.com/docker/docker v28.3.3+incompatible h1:Dypm25kh4rmk49v1eiVbsAtpAsYURjYkaKubwuBdxEI=
Expand Down
Loading
Loading