Skip to content

Commit

Permalink
Add double precision linux build to build_var.json
Browse files Browse the repository at this point in the history
  • Loading branch information
2shady4u committed Sep 23, 2024
1 parent fb17f67 commit 75cb037
Show file tree
Hide file tree
Showing 2 changed files with 23 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 ]
branches: [ master, feature/add-linux-double-precision ]
tags:
- "v*"

Expand Down
29 changes: 22 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,59 @@
"os": "ubuntu-20.04",
"platform": "linux",
"artifact-extension": "so",
"cache-name": "linux-x86_64"
"cache-name": "linux-x86_64",
"skip": true
},
{
"name": "Ubuntu (GCC, Double Precision)",
"os": "ubuntu-20.04",
"platform": "linux",
"artifact-extension": "so",
"flags": "precision=double",
"cache-name": "linux-x86_64-f64"
},
{
"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
}
]
}

0 comments on commit 75cb037

Please sign in to comment.