about summary refs log tree commit diff stats
path: root/.github/workflows
diff options
context:
space:
mode:
authortheofficialgman <28281419+theofficialgman@users.noreply.github.com>2022-07-05 16:01:01 -0400
committerGitHub <noreply@github.com>2022-07-05 22:01:01 +0200
commit0674636243afb94553b60cf36a32188e5bf83971 (patch)
treef7f676a1698ff4134647c06744827776bf5105e9 /.github/workflows
parentea89d85845ac1dff6280576e8401987b3e9c5b94 (diff)
downloadbox64-0674636243afb94553b60cf36a32188e5bf83971.tar.gz
box64-0674636243afb94553b60cf36a32188e5bf83971.zip
add 18.04 for tegra-x1 github actions (#345)
remove from ubuntu-latest as well
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/release.yml12
1 files changed, 10 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index e0d947e1..79e0a556 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -27,10 +27,18 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        platform: [X64, OTHER_ARM, RISCV, RPI4ARM64, RK3326, RK3399, RK3288, TEGRAX1, PHYTIUM, SD845]
+        os: [ubuntu-latest]
+        platform: [X64, OTHER_ARM, RISCV, RPI4ARM64, RK3326, RK3399, RK3288, PHYTIUM, SD845]
         type: [Release, Trace]
+        include:
+          - os: ubuntu-18.04
+            platform: TEGRAX1
+            type: Release
+          - os: ubuntu-18.04
+            platform: TEGRAX1
+            type: Trace
 
-    runs-on: ubuntu-latest
+    runs-on: ${{ matrix.os }}
     steps:
       - name: "Checkout Box64 Repository"
         uses: actions/checkout@v2