From 7bbfbe20f12e2ae255acf1bf6c07bb4b25fff523 Mon Sep 17 00:00:00 2001 From: 2shady4u Date: Mon, 2 Sep 2024 20:05:44 +0200 Subject: [PATCH] Disable all builds, except web --- .github/workflows/build.yml | 2 +- .github/workflows/build_var.json | 21 ++++++++++++++------- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 543dc5f..e10c450 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ name: 🌈 All Builds on: push: - branches: [ master, feature/fix-web-build ] + branches: [ master, temp/fix-web-build ] tags: - "v*" diff --git a/.github/workflows/build_var.json b/.github/workflows/build_var.json index 06a56a1..47091fc 100644 --- a/.github/workflows/build_var.json +++ b/.github/workflows/build_var.json @@ -20,7 +20,8 @@ "platform": "windows", "artifact-extension": "dll", "flags": "use_mingw=yes", - "cache-name": "win-x86_64-mingw" + "cache-name": "win-x86_64-mingw", + "skip": true }, { "name": "Windows (x86_64, MinGW, Double Precision)", @@ -36,7 +37,8 @@ "os": "ubuntu-20.04", "platform": "linux", "artifact-extension": "so", - "cache-name": "linux-x86_64" + "cache-name": "linux-x86_64", + "skip": true }, { "name": "MacOS (universal)", @@ -44,7 +46,8 @@ "platform": "macos", "artifact-extension": "framework", "flags": "arch=universal", - "cache-name": "macos-universal" + "cache-name": "macos-universal", + "skip": true }, { "name": "Android (x86_64)", @@ -52,7 +55,8 @@ "platform": "android", "artifact-extension": "so", "flags": "arch=x86_64", - "cache-name": "android-x86_64" + "cache-name": "android-x86_64", + "skip": true }, { "name": "Android (arm64)", @@ -60,21 +64,24 @@ "platform": "android", "artifact-extension": "so", "flags": "arch=arm64", - "cache-name": "android-arm64" + "cache-name": "android-arm64", + "skip": true }, { "name": "iOS (arm64)", "os": "macos-latest", "platform": "ios", "artifact-extension": "xcframework", - "cache-name": "ios-arm64" + "cache-name": "ios-arm64", + "skip": true }, { "name": "Web (wasm32)", "os": "ubuntu-20.04", "platform": "web", "artifact-extension": "wasm", - "cache-name": "web-wasm32" + "cache-name": "web-wasm32", + "skip": true }, { "name": "Web (wasm32, No Threads)",