Skip to content

Commit

Permalink
Disable all builds, except web
Browse files Browse the repository at this point in the history
  • Loading branch information
2shady4u committed Sep 2, 2024
1 parent 6ad9996 commit 7bbfbe2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 🌈 All Builds
on:
push:
branches: [ master, feature/fix-web-build ]
branches: [ master, temp/fix-web-build ]
tags:
- "v*"

Expand Down
21 changes: 14 additions & 7 deletions .github/workflows/build_var.json
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
Expand All @@ -36,45 +37,51 @@
"os": "ubuntu-20.04",
"platform": "linux",
"artifact-extension": "so",
"cache-name": "linux-x86_64"
"cache-name": "linux-x86_64",
"skip": true
},
{
"name": "MacOS (universal)",
"os": "macos-latest",
"platform": "macos",
"artifact-extension": "framework",
"flags": "arch=universal",
"cache-name": "macos-universal"
"cache-name": "macos-universal",
"skip": true
},
{
"name": "Android (x86_64)",
"os": "ubuntu-20.04",
"platform": "android",
"artifact-extension": "so",
"flags": "arch=x86_64",
"cache-name": "android-x86_64"
"cache-name": "android-x86_64",
"skip": true
},
{
"name": "Android (arm64)",
"os": "ubuntu-20.04",
"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)",
Expand Down

0 comments on commit 7bbfbe2

Please sign in to comment.