|
|
@ -81,6 +81,13 @@ jobs: |
|
|
|
- name: Run acmetest |
|
|
|
run: cd ../acmetest && ./rundocker.sh testall |
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v1 |
|
|
|
if: failure() |
|
|
|
with: |
|
|
|
name: Docker-logs |
|
|
|
path: logs |
|
|
|
|
|
|
|
|
|
|
|
MacOS: |
|
|
|
runs-on: macos-latest |
|
|
|
needs: Docker |
|
|
@ -119,6 +126,14 @@ jobs: |
|
|
|
cd ../acmetest |
|
|
|
./letest.sh |
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v1 |
|
|
|
if: failure() |
|
|
|
with: |
|
|
|
name: MacOS-logs |
|
|
|
path: logs |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Windows: |
|
|
|
runs-on: windows-latest |
|
|
|
needs: MacOS |
|
|
@ -172,6 +187,12 @@ jobs: |
|
|
|
cd ../acmetest |
|
|
|
./letest.sh |
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v1 |
|
|
|
if: failure() |
|
|
|
with: |
|
|
|
name: Windows-logs |
|
|
|
path: logs |
|
|
|
|
|
|
|
FreeBSD: |
|
|
|
runs-on: macos-12 |
|
|
|
needs: Windows |
|
|
@ -213,6 +234,13 @@ jobs: |
|
|
|
cd ../acmetest |
|
|
|
./letest.sh |
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v1 |
|
|
|
if: failure() |
|
|
|
with: |
|
|
|
name: FreeBSD-logs |
|
|
|
path: logs |
|
|
|
|
|
|
|
|
|
|
|
Solaris: |
|
|
|
runs-on: macos-12 |
|
|
|
needs: FreeBSD |
|
|
@ -255,6 +283,12 @@ jobs: |
|
|
|
cd ../acmetest |
|
|
|
./letest.sh |
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v1 |
|
|
|
if: failure() |
|
|
|
with: |
|
|
|
name: Solaris-logs |
|
|
|
path: logs |
|
|
|
|
|
|
|
|
|
|
|
OpenBSD: |
|
|
|
runs-on: macos-12 |
|
|
@ -297,6 +331,13 @@ jobs: |
|
|
|
cd ../acmetest |
|
|
|
./letest.sh |
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v1 |
|
|
|
if: failure() |
|
|
|
with: |
|
|
|
name: OpenBSD-logs |
|
|
|
path: logs |
|
|
|
|
|
|
|
|
|
|
|
NetBSD: |
|
|
|
runs-on: macos-12 |
|
|
|
needs: OpenBSD |
|
|
@ -339,6 +380,13 @@ jobs: |
|
|
|
cd ../acmetest |
|
|
|
./letest.sh |
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v1 |
|
|
|
if: failure() |
|
|
|
with: |
|
|
|
name: NetBSD-logs |
|
|
|
path: logs |
|
|
|
|
|
|
|
|
|
|
|
DragonFlyBSD: |
|
|
|
runs-on: macos-12 |
|
|
|
needs: NetBSD |
|
|
@ -381,3 +429,13 @@ jobs: |
|
|
|
cd ../acmetest |
|
|
|
./letest.sh |
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v1 |
|
|
|
if: failure() |
|
|
|
with: |
|
|
|
name: DragonFlyBSD-logs |
|
|
|
path: logs |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|