summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYousif Akbar <11247449+yhakbar@users.noreply.github.com>2023-08-20 12:38:02 -0400
committerGitHub <noreply@github.com>2023-08-20 11:38:02 -0500
commit4456de5fe35b3386d93abf48c946c75e66c81316 (patch)
treed5bb07c0d961ff132cd8889ce2f917fad1bf0e3c
parent43568a82298a0013d31f6ea29ebd132374e8c8de (diff)
Adding `armv7-unknown-linux-gnueabihf` target (#204)
-rw-r--r--.github/workflows/publish.yml4
-rw-r--r--.github/workflows/test.yml4
2 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 6a2158c..66109fa 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -41,6 +41,10 @@ jobs:
target: aarch64-unknown-linux-musl
use-cross: true
+ - os: ubuntu-latest
+ target: armv7-unknown-linux-gnueabihf
+ use-cross: true
+
steps:
- name: Checkout repository
uses: actions/checkout@v2
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 6e8890e..e7505c6 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -39,6 +39,10 @@ jobs:
target: aarch64-unknown-linux-musl
use-cross: true
+ - os: ubuntu-latest
+ target: armv7-unknown-linux-gnueabihf
+ use-cross: true
+
steps:
- name: Checkout repository
uses: actions/checkout@v2