Browse Source

Remove armv7 support (#2369)

remove armv7 support
pull/2370/head
Bernd Storath 5 months ago
committed by GitHub
parent
commit
94b33abf5e
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      .github/workflows/deploy-development.yml
  2. 4
      .github/workflows/deploy-edge.yml
  3. 4
      .github/workflows/deploy-pr.yml
  4. 4
      .github/workflows/deploy.yml
  5. 1
      CHANGELOG.md
  6. 2
      docs/content/advanced/migrate/from-14-to-15.md
  7. 2
      docs/content/examples/tutorials/basic-installation.md
  8. 2
      docs/content/getting-started.md

4
.github/workflows/deploy-development.yml

@ -18,8 +18,8 @@ jobs:
os: ubuntu-latest
- platform: linux/arm64
os: ubuntu-24.04-arm
- platform: linux/arm/v7
os: ubuntu-24.04-arm
# - platform: linux/arm/v7
# os: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v6

4
.github/workflows/deploy-edge.yml

@ -25,8 +25,8 @@ jobs:
os: ubuntu-latest
- platform: linux/arm64
os: ubuntu-24.04-arm
- platform: linux/arm/v7
os: ubuntu-24.04-arm
# - platform: linux/arm/v7
# os: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v6
with:

4
.github/workflows/deploy-pr.yml

@ -21,8 +21,8 @@ jobs:
os: ubuntu-latest
- platform: linux/arm64
os: ubuntu-24.04-arm
- platform: linux/arm/v7
os: ubuntu-24.04-arm
# - platform: linux/arm/v7
# os: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v6

4
.github/workflows/deploy.yml

@ -26,8 +26,8 @@ jobs:
os: ubuntu-latest
- platform: linux/arm64
os: ubuntu-24.04-arm
- platform: linux/arm/v7
os: ubuntu-24.04-arm
# - platform: linux/arm/v7
# os: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v6

1
CHANGELOG.md

@ -30,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Allow empty DNS (https://github.com/wg-easy/wg-easy/pull/2052, https://github.com/wg-easy/wg-easy/pull/2057)
- Don't include keys in API responses (https://github.com/wg-easy/wg-easy/pull/2015)
- Try all QR ecc levels (https://github.com/wg-easy/wg-easy/pull/2288)
- Removed ARMv7 support (https://github.com/wg-easy/wg-easy/pull/2369)
## Docs

2
docs/content/advanced/migrate/from-14-to-15.md

@ -7,7 +7,7 @@ This guide will help you migrate from `v14` to version `v15` of `wg-easy`.
## Changes
- This is a complete rewrite of the `wg-easy` project, therefore the configuration files and the way you interact with the project have changed.
- If you use armv6, you unfortunately won't be able to migrate to `v15`.
- If you use armv6 or armv7, you unfortunately won't be able to migrate to `v15`.
- If you are connecting to the Web UI via HTTP, you need to set the `INSECURE` environment variable to `true` in the new container.
## Migration

2
docs/content/examples/tutorials/basic-installation.md

@ -8,7 +8,7 @@ title: Basic Installation
1. You need to have a host that you can manage
2. You need to have a domain name or a public IP address
3. You need a supported architecture (x86_64, arm64, armv7)
3. You need a supported architecture (x86_64, arm64)
4. You need curl installed on your host
## Install Docker

2
docs/content/getting-started.md

@ -12,7 +12,7 @@ Before you can get started with deploying your own VPN, there are some requireme
1. You need to have a host that you can manage
2. You need to have a domain name or a public IP address
3. You need a supported architecture (x86_64, arm64, armv7)
3. You need a supported architecture (x86_64, arm64)
### Host Setup

Loading…
Cancel
Save