Skip to content

Commit

Permalink
build: [#467] Resolve 'GLIBC_2.34 not found in snapcraft' issue. (#468)
Browse files Browse the repository at this point in the history
  • Loading branch information
030 authored Feb 4, 2024
1 parent d37fdc5 commit 70ed1cc
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/snapcraft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
path: build/package
id: snapcraft
- run: |
snap --version
echo "check ldd version"
ldd --version
sudo snap install --dangerous ${{ steps.snapcraft.outputs.snap }}
n3dr --version | grep "[0-9]\."
- uses: snapcore/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: '3'
env:
GIT_CHGLOG_URL: https://github.com/git-chglog/git-chglog/releases/download
GIT_CHGLOG_VERSION: v0.15.1/git-chglog_0.15.1_linux_amd64.tar.gz
CHANGELOG_NEXT_TAG: 7.4.0
CHANGELOG_NEXT_TAG: 7.4.1

tasks:
changelog:
Expand Down
8 changes: 6 additions & 2 deletions build/package/snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: n3dr
base: core20
version: 7.4.0
base: core22
version: 7.4.1
summary: Nexus3 Disaster Recovery
description: |
Download all artifacts at once or migrate automatically from Nexus to Nexus.
Expand All @@ -20,7 +20,11 @@ parts:
plugin: nil
build-packages:
- curl
- libc6-dev
override-build: |
snap --version
echo "check ldd version"
ldd --version
cd $SNAPCRAFT_PART_INSTALL
export N3DR_URL=https://github.com/030/n3dr/releases/download
export N3DR_URL_VERSION=${N3DR_URL}/${SNAPCRAFT_PROJECT_VERSION}
Expand Down
13 changes: 10 additions & 3 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@
## [Unreleased]


<a name="7.4.1"></a>
## [7.4.1] - 2024-02-04
### Build
- Resolve 'GLIBC_2.34 not found in snapcraft' issue.


<a name="7.4.0"></a>
## [7.4.0] - 2024-02-03
## [7.4.0] - 2024-02-04
### Build
- [[#423](https://github.com/030/n3dr/issues/423)] Add golang action. ([#424](https://github.com/030/n3dr/issues/424))
- Replace separate hadolint, dockle and trivy by one workflow. ([#417](https://github.com/030/n3dr/issues/417))
Expand Down Expand Up @@ -32,7 +38,7 @@
- **deps:** bump alpine from 3.18.4 to 3.18.5 ([#387](https://github.com/030/n3dr/issues/387))

### Feat
- [[#440](https://github.com/030/n3dr/issues/440)] Create user and assign roles.
- [[#440](https://github.com/030/n3dr/issues/440)] Create user and assign roles. ([#447](https://github.com/030/n3dr/issues/447))

### Fix
- [[#428](https://github.com/030/n3dr/issues/428)] Resolve race condition. ([#435](https://github.com/030/n3dr/issues/435))
Expand Down Expand Up @@ -454,7 +460,8 @@ The `backup`, `upload` and `repositories` commands have been removed.
<a name="1.0.0"></a>
## 1.0.0 - 2019-05-12

[Unreleased]: https://github.com/030/n3dr/compare/7.4.0...HEAD
[Unreleased]: https://github.com/030/n3dr/compare/7.4.1...HEAD
[7.4.1]: https://github.com/030/n3dr/compare/7.4.0...7.4.1
[7.4.0]: https://github.com/030/n3dr/compare/7.3.3...7.4.0
[7.3.3]: https://github.com/030/n3dr/compare/7.3.2...7.3.3
[7.3.2]: https://github.com/030/n3dr/compare/7.3.1...7.3.2
Expand Down
6 changes: 3 additions & 3 deletions docs/quickstarts/snippets/n3dr/DOWNLOAD.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Download

Download the [latest N3DR binary](https://github.com/030/n3dr/releases/tag/7.4.0):
Download the [latest N3DR binary](https://github.com/030/n3dr/releases/tag/7.4.1):

```bash
cd /tmp && \
curl -L https://github.com/030/n3dr/releases/download/7.4.0/n3dr-ubuntu-latest \
curl -L https://github.com/030/n3dr/releases/download/7.4.1/n3dr-ubuntu-latest \
-o n3dr-ubuntu-latest && \
curl -L https://github.com/030/n3dr/releases/download/7.4.0/\
curl -L https://github.com/030/n3dr/releases/download/7.4.1/\
n3dr-ubuntu-latest.sha512.txt \
-o n3dr-ubuntu-latest.sha512.txt && \
sha512sum -c n3dr-ubuntu-latest.sha512.txt && \
Expand Down

0 comments on commit 70ed1cc

Please sign in to comment.