mirror of
https://github.com/italicsjenga/ash-molten.git
synced 2024-12-23 13:21:30 +11:00
MoltenVK 1.1.3 #feb8d41 (#58)
* patch feb8d41 * Update to macos 11 * Update xcode path * Forgot 1 xcode path * Also forgot a macos-latest Co-authored-by: Jake Shadle <jake.shadle@embark-studios.com>
This commit is contained in:
parent
e3030ae381
commit
98697e2620
12
.github/workflows/ci.yaml
vendored
12
.github/workflows/ci.yaml
vendored
|
@ -8,9 +8,9 @@ name: CI
|
|||
jobs:
|
||||
lint:
|
||||
name: Lint
|
||||
runs-on: macos-latest
|
||||
runs-on: macos-11
|
||||
env:
|
||||
DEVELOPER_DIR: /Applications/Xcode_12.1.app
|
||||
DEVELOPER_DIR: /Applications/Xcode_12.5.app
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
|
@ -33,9 +33,9 @@ jobs:
|
|||
|
||||
test-source:
|
||||
name: Test (source build)
|
||||
runs-on: macos-latest
|
||||
runs-on: macos-11
|
||||
env:
|
||||
DEVELOPER_DIR: /Applications/Xcode_12.1.app
|
||||
DEVELOPER_DIR: /Applications/Xcode_12.5.app
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
|
@ -47,9 +47,9 @@ jobs:
|
|||
|
||||
test:
|
||||
name: Test (pre-built)
|
||||
runs-on: macos-latest
|
||||
runs-on: macos-11
|
||||
env:
|
||||
DEVELOPER_DIR: /Applications/Xcode_12.1.app
|
||||
DEVELOPER_DIR: /Applications/Xcode_12.5.app
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "ash-molten"
|
||||
description = "Statically linked MoltenVK for Vulkan on Mac using Ash"
|
||||
version = "0.9.0+1.1.2-f28ab1c"
|
||||
version = "0.10.0+1.1.3-feb8d41"
|
||||
authors = ["Embark <opensource@embark-studios.com>", "Maik Klein <maik.klein@embark-studios.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
|
|
@ -61,8 +61,8 @@ mod mac {
|
|||
use std::path::Path;
|
||||
|
||||
// MoltenVK git tagged release to use
|
||||
pub static MOLTEN_VK_VERSION: &str = "1.1.2";
|
||||
pub static MOLTEN_VK_PATCH: Option<&str> = Some("f28ab1c");
|
||||
pub static MOLTEN_VK_VERSION: &str = "1.1.3";
|
||||
pub static MOLTEN_VK_PATCH: Option<&str> = Some("feb8d41");
|
||||
|
||||
// Return the artifact tag in the form of "x.x.x" or if there is a patch specified "x.x.x#yyyyyyy"
|
||||
pub(crate) fn get_artifact_tag() -> String {
|
||||
|
|
Loading…
Reference in a new issue