Skip to content

Commit 11cb70d

Browse files
committed
Fix ARC release table
1 parent 940d417 commit 11cb70d

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

github/gh-release

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ import ghapi
2323
ARC_DOWNLOAD_TABLE = r"""
2424
| | Linux x86_64 | Windows x86_64 | Linux ARC HS | macOS x86_64 |
2525
| --------------------- | ------------ | -------------- | ------------ | ------------ |
26-
| Baremetal | {0} \ {1} | | | {2} \ {3} |
27-
| Linux/uClibc ARC700 | {4} \ {5} | | | |
28-
| Linux/uClibc ARC HS | {6} \ {7} | | | |
29-
| Linux/glibc ARC HS | {8} \ {9} | | {10} | |
30-
| IDE | {11} | {12} | | {13} |
31-
| Baremetal ARCv3 | {14} | | | |
32-
| Linux/glibc ARC HS68 | {15} | | | |
33-
| Linux/uClibc ARC HS58 | {16} | | | |
26+
| Baremetal | {0} \ {1} | | | |
27+
| Linux/uClibc ARC700 | {2} \ {3} | | | |
28+
| Linux/uClibc ARC HS | {4} \ {5} | | | |
29+
| Linux/glibc ARC HS | {6} \ {7} | | {8} | |
30+
| IDE | {9} | {10} | | |
31+
| Baremetal ARCv3 | {11} | | | |
32+
| Linux/glibc ARC HS68 | {12} | | {13} | |
33+
| Linux/uClibc ARC HS58 | {14} | | {15} | |
3434
"""
3535

3636

@@ -69,8 +69,6 @@ def create_arc_table(release_id, owner, project, tag):
6969
return ARC_DOWNLOAD_TABLE.format(
7070
fformat.format(t=le, release=release_id, type="elf32", cpu="le", host="linux"),
7171
fformat.format(t=be, release=release_id, type="elf32", cpu="be", host="linux"),
72-
fformat.format(t=le, release=release_id, type="elf32", cpu="le", host="macos"),
73-
fformat.format(t=be, release=release_id, type="elf32", cpu="be", host="macos"),
7472
fformat.format(t=le, release=release_id, type="uclibc", cpu="le_arc700",
7573
host="linux"),
7674
fformat.format(t=be, release=release_id, type="uclibc", cpu="be_arc700",
@@ -87,13 +85,16 @@ def create_arc_table(release_id, owner, project, tag):
8785
host="native"),
8886
ide_fformat.format(t="Download", release=release_id, host="linux", ext="tar.gz"),
8987
ide_fformat.format(t="Download", release=release_id, host="win", ext="exe"),
90-
ide_fformat.format(t="Download", release=release_id, host="macos", ext="tar.gz"),
9188
fformat.format(t=le, release=release_id, type="arc64", cpu="elf",
9289
host="linux"),
9390
fformat.format(t=le, release=release_id, type="arc64", cpu="glibc",
9491
host="linux"),
92+
fformat.format(t=le, release=release_id, type="arc64", cpu="glibc",
93+
host="native"),
9594
fformat.format(t=le, release=release_id, type="arc32", cpu="uclibc",
9695
host="linux"),
96+
fformat.format(t=le, release=release_id, type="arc32", cpu="uclibc",
97+
host="native"),
9798
)
9899

99100

0 commit comments

Comments
 (0)