Skip to content
This repository was archived by the owner on Feb 28, 2023. It is now read-only.

Commit 8662bd1

Browse files
committed
re-generate workflows without linux-arm
1 parent 7348bad commit 8662bd1

File tree

5 files changed

+1
-113
lines changed

5 files changed

+1
-113
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,6 @@ jobs:
100100
timeout-minutes: 1440
101101
run: bash scripts/helper/build.sh --version "${{ github.event.inputs.version }}" --arm64
102102

103-
- name: 'Build Linux arm32 binary'
104-
timeout-minutes: 1440
105-
run: bash scripts/helper/build.sh --version "${{ github.event.inputs.version }}" --arm32
106-
107103
- name: 'Publish pre-release'
108104
# https://github.com/ncipollo/release-action
109105
uses: ncipollo/release-action@v1

.github/workflows/test-docker-linux-arm.yml

Lines changed: 0 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -262,81 +262,5 @@ jobs:
262262
# docker://gentoo/portage - exec: "/bin/bash": stat /bin/bash: no such file or directory: unknown.
263263

264264

265-
# https://hub.docker.com/r/arm32v7/ubuntu/
266-
ubuntu-arm:
267-
name: 'arm GNU RISC-V Embedded GCC ${{ github.event.inputs.version }} test on Ubuntu 18, 16, 14 stable'
268-
runs-on: [self-hosted, Linux, Arm64]
269-
steps:
270-
- name: 'Checkout'
271-
uses: actions/checkout@v2
272-
with:
273-
fetch-depth: 3
274-
submodules: true
275-
# docker://arm32v7/ubuntu:20.04 - fails to update
276-
- name: 'Ubuntu 18.04 arm'
277-
uses: docker://arm32v7/ubuntu:18.04
278-
with:
279-
entrypoint: /usr/bin/linux32
280-
args: /bin/bash /github/workspace/scripts/helper/tests/native-test.sh --image arm32v7/ubuntu:18.04 --version ${{ github.event.inputs.version }} --base-url ${{ github.event.inputs.base_url }}
281-
- name: 'Ubuntu 16.04 arm'
282-
uses: docker://arm32v7/ubuntu:16.04
283-
with:
284-
entrypoint: /usr/bin/linux32
285-
args: /bin/bash /github/workspace/scripts/helper/tests/native-test.sh --image arm32v7/ubuntu:16.04 --version ${{ github.event.inputs.version }} --base-url ${{ github.event.inputs.base_url }}
286-
287-
# https://hub.docker.com/r/arm32v7/debian
288-
debian-arm:
289-
name: 'arm GNU RISC-V Embedded GCC ${{ github.event.inputs.version }} test on Debian 10, 9, 8 stable'
290-
runs-on: [self-hosted, Linux, Arm64]
291-
steps:
292-
- name: 'Checkout'
293-
uses: actions/checkout@v2
294-
with:
295-
fetch-depth: 3
296-
submodules: true
297-
- name: 'Debian 10 arm'
298-
uses: docker://arm32v7/debian:buster
299-
with:
300-
entrypoint: /usr/bin/linux32
301-
args: /bin/bash /github/workspace/scripts/helper/tests/native-test.sh --image arm32v7/debian:buster --version ${{ github.event.inputs.version }} --base-url ${{ github.event.inputs.base_url }}
302-
- name: 'Debian 9 arm'
303-
uses: docker://arm32v7/debian:stretch
304-
with:
305-
entrypoint: /usr/bin/linux32
306-
args: /bin/bash /github/workspace/scripts/helper/tests/native-test.sh --image arm32v7/debian:stretch --version ${{ github.event.inputs.version }} --base-url ${{ github.event.inputs.base_url }}
307-
- name: 'Debian 8 arm'
308-
uses: docker://arm32v7/debian:jessie
309-
with:
310-
entrypoint: /usr/bin/linux32
311-
args: /bin/bash /github/workspace/scripts/helper/tests/native-test.sh --image arm32v7/debian:jessie --version ${{ github.event.inputs.version }} --base-url ${{ github.event.inputs.base_url }}
312-
313-
# docker://arm32v7/debian:testing - fails to update
314-
315-
raspbian-arm:
316-
name: 'arm GNU RISC-V Embedded GCC ${{ github.event.inputs.version }} test on Raspbian 9 stable'
317-
runs-on: [self-hosted, Linux, Arm64]
318-
steps:
319-
- name: 'Checkout'
320-
uses: actions/checkout@v2
321-
with:
322-
fetch-depth: 3
323-
submodules: true
324-
- name: 'Raspbian 9 arm'
325-
uses: docker://raspbian/stretch
326-
with:
327-
entrypoint: /usr/bin/linux32
328-
args: /bin/bash /github/workspace/scripts/helper/tests/native-test.sh --image raspbian/stretch --version ${{ github.event.inputs.version }} --base-url ${{ github.event.inputs.base_url }}
329-
# docker://raspbian/jessie (8) fails to update.
330-
331-
# https://hub.docker.com/r/arm32v7/centos
332-
# docker://arm32v7/centos:7 - fails to update
333-
# docker://arm32v7/centos:8 - not available
334-
335-
# centos:latest outdated
336-
# docker://arm32v7/centos:latest outdated
337-
338-
# fedora-arm: fails to update
339-
340-
341265

342266
# -----------------------------------------------------------------------------

.github/workflows/test-prime.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -81,22 +81,6 @@ jobs:
8181
args: /github/workspace/scripts/helper/tests/native-test.sh --image debian:buster --version ${{ github.event.inputs.version }} --base-url ${{ github.event.inputs.base_url }}
8282

8383

84-
linux-arm32:
85-
name: 'arm32 Linux GNU RISC-V Embedded GCC ${{ github.event.inputs.version }} test'
86-
runs-on: [self-hosted, Linux, Arm64]
87-
steps:
88-
- name: 'Checkout'
89-
uses: actions/checkout@v2
90-
with:
91-
fetch-depth: 3
92-
submodules: true
93-
- name: 'Run ${{ github.event.inputs.version }} docker test'
94-
uses: docker://arm32v7/debian:buster
95-
with:
96-
entrypoint: /usr/bin/linux32
97-
args: /bin/bash /github/workspace/scripts/helper/tests/native-test.sh --image arm32v7/debian:buster --version ${{ github.event.inputs.version }} --base-url ${{ github.event.inputs.base_url }}
98-
99-
10084
macos-x64:
10185
name: 'x64 macOS GNU RISC-V Embedded GCC ${{ github.event.inputs.version }} test'
10286
runs-on: macos-latest

.github/workflows/test-xpm.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -80,22 +80,6 @@ jobs:
8080
args: scripts/helper/tests/xpm-test.sh --image ilegeul/debian:arm64v8-10-npm-v1 --version ${{ github.event.inputs.version }}
8181

8282

83-
linux-arm32:
84-
name: 'Arm Linux 32-bit GNU RISC-V Embedded GCC@${{ github.event.inputs.version }} test'
85-
runs-on: [self-hosted, Linux, ARM64]
86-
steps:
87-
- name: 'Checkout'
88-
uses: actions/checkout@v2
89-
with:
90-
fetch-depth: 3
91-
submodules: true
92-
- name: 'Run ${{ github.event.inputs.version }} xpm docker test on Debian 10 armhf'
93-
uses: docker://ilegeul/debian:arm32v7-10-npm-v1
94-
with:
95-
entrypoint: /usr/bin/linux32
96-
args: /bin/bash scripts/helper/tests/xpm-test.sh --image ilegeul/debian:arm32v7-10-npm-v1 --version ${{ github.event.inputs.version }}
97-
98-
9983
macos-x64:
10084
name: 'Intel macOS 64-bit GNU RISC-V Embedded GCC@${{ github.event.inputs.version }} test'
10185
runs-on: macos-latest

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
"properties": {
100100
"appName": "GNU RISC-V Embedded GCC",
101101
"appLCName": "riscv-none-embed-gcc",
102-
"platforms": "all",
102+
"platforms": "linux-x64,linux-ia32,linux-arm64,darwin-x64,win32-x64,win32-ia32",
103103
"LIQUIDJS": "liquidjs '{ \"APP_NAME\": \"{{ properties.appName }}\", \"APP_LC_NAME\": \"{{ properties.appLCName }}\", \"platforms\": \"{{ properties.platforms }}\" }'"
104104
},
105105
"actions": {

0 commit comments

Comments
 (0)