Skip to content

Commit 7395568

Browse files
committed
ci: Try pulling from toolchains
1 parent f3bd6d6 commit 7395568

File tree

1 file changed

+2
-38
lines changed

1 file changed

+2
-38
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -3,39 +3,6 @@ name: "test"
33
on: [push]
44

55
jobs:
6-
push:
7-
name: '${{ matrix.toolchain }}'
8-
runs-on: ubuntu-24.04
9-
strategy:
10-
fail-fast: false
11-
matrix:
12-
toolchain:
13-
- arm-riscos-gnueabi
14-
- arm-unknown-riscos
15-
- i686-w64-mingw32
16-
- m5475-atari-mint
17-
- m68k-atari-mint
18-
- m68k-unknown-amigaos
19-
- ppc-amigaos
20-
- x86_64-w64-mingw32
21-
22-
steps:
23-
- name: Checkout repository
24-
uses: actions/checkout@v5
25-
with:
26-
fetch-depth: 1
27-
28-
- name: Create
29-
run: touch ${{ matrix.toolchain }}.txt
30-
31-
# Can't avoid `upload-artifact` zipping the tarball
32-
# https://github.com/actions/upload-artifact/issues/426
33-
- name: Upload artifact
34-
uses: actions/upload-artifact@v4
35-
with:
36-
name: ${{ matrix.toolchain }}
37-
path: ${{ matrix.toolchain }}.txt
38-
compression-level: 0 # Avoid pointless recompression
396
pull:
407
name: '${{ matrix.toolchain }}'
418
runs-on: ubuntu-24.04
@@ -62,10 +29,7 @@ jobs:
6229
uses: actions/download-artifact@v7
6330
with:
6431
name: ${{ matrix.toolchain }}
65-
compression-level: 0 # Avoid pointless recompression
32+
repository: netsurf/toolchains
6633

6734
- name: Check ls
68-
run: ls -l ${{ matrix.toolchain }}.txt
69-
70-
- name: Check cat
71-
run: cat ${{ matrix.toolchain }}.txt
35+
run: ls -l ${{ matrix.toolchain }}.tar.gz

0 commit comments

Comments
 (0)