Skip to content

Commit

Permalink
update CI and merge with main
Browse files Browse the repository at this point in the history
  • Loading branch information
VZout committed Jul 26, 2021
1 parent e3030ae commit ed84f41
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
authors = ["Embark <[email protected]>", "Maik Klein <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion build/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ 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_VERSION: &str = "1.1.3";
pub static MOLTEN_VK_PATCH: Option<&str> = Some("f28ab1c");

// Return the artifact tag in the form of "x.x.x" or if there is a patch specified "x.x.x#yyyyyyy"
Expand Down

0 comments on commit ed84f41

Please sign in to comment.