From f7951a00106203baec1b0fa649fb2d7b2c37f044 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Sun, 13 Nov 2022 16:57:14 -0500 Subject: [PATCH] change workflows to replace obsolete lua feature with luau feature --- .github/workflows/publish.yml | 10 +++++----- .github/workflows/rust-beta.yml | 4 ++-- .github/workflows/rust-macos.yml | 4 ++-- .github/workflows/rust-windows.yml | 4 ++-- .github/workflows/rust.yml | 4 ++-- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d0f19a7ec..82c4d0353 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -52,7 +52,7 @@ jobs: target: i686-unknown-linux-gnu architecture: i686 use-cross: true - addl-build-args: --features=apply,generate,lua,fetch,foreach,self_update + addl-build-args: --features=apply,generate,luau,fetch,foreach,self_update default-features: - os: windows-latest os-name: windows @@ -88,28 +88,28 @@ jobs: architecture: aarch64 build-prep: true use-cross: true - addl-build-args: --features=apply,generate,lua,fetch,foreach,self_update + addl-build-args: --features=apply,generate,luau,fetch,foreach,self_update default-features: --no-default-features - os: ubuntu-latest os-name: linux target: aarch64-unknown-linux-gnu architecture: aarch64 use-cross: true - addl-build-args: --features=apply,generate,lua,fetch,foreach,self_update + addl-build-args: --features=apply,generate,luau,fetch,foreach,self_update default-features: # - os: ubuntu-latest # os-name: linux # target: arm-unknown-linux-gnueabihf # architecture: arm # use-cross: true - # addl-build-args: --features=apply,generate,lua,fetch,foreach,self_update + # addl-build-args: --features=apply,generate,luau,fetch,foreach,self_update # default-features: --no-default-features # - os: ubuntu-latest # os-name: linux # target: arm-unknown-linux-musleabihf # architecture: arm # use-cross: true - # addl-build-args: --features=apply,generate,lua,fetch,foreach,self_update + # addl-build-args: --features=apply,generate,luau,fetch,foreach,self_update # default-features: --no-default-features steps: diff --git a/.github/workflows/rust-beta.yml b/.github/workflows/rust-beta.yml index 8b7a365e9..5f163579e 100644 --- a/.github/workflows/rust-beta.yml +++ b/.github/workflows/rust-beta.yml @@ -23,6 +23,6 @@ jobs: rustup update beta rustup default beta - name: Run tests - run: cargo test --verbose --features full,apply,fetch,generate,foreach,python,lua - - name: Run luajit tests separately as its mutually exclusive with lua feature + run: cargo test --verbose --features full,apply,fetch,generate,foreach,python,luau + - name: Run luajit tests separately as its mutually exclusive with luau feature run: cargo test luajit --verbose --locked --features=luajit,full diff --git a/.github/workflows/rust-macos.yml b/.github/workflows/rust-macos.yml index 7004b2eee..66f67ea70 100644 --- a/.github/workflows/rust-macos.yml +++ b/.github/workflows/rust-macos.yml @@ -26,6 +26,6 @@ jobs: with: key: qsv-cache - name: Run tests - run: cargo test --verbose --locked --features=apply,fetch,foreach,generate,lua,python,full - - name: Run luajit tests separately as its mutually exclusive with lua feature + run: cargo test --verbose --locked --features=apply,fetch,foreach,generate,luau,python,full + - name: Run luajit tests separately as its mutually exclusive with luau feature run: cargo test luajit --verbose --locked --features=luajit,full diff --git a/.github/workflows/rust-windows.yml b/.github/workflows/rust-windows.yml index 5fbf77a8d..6609d7586 100644 --- a/.github/workflows/rust-windows.yml +++ b/.github/workflows/rust-windows.yml @@ -29,6 +29,6 @@ jobs: run: | mkdir DLLs - name: Run tests - run: cargo test --verbose --locked --features=apply,fetch,foreach,generate,lua,python,full - - name: Run luajit tests separately as its mutually exclusive with lua feature + run: cargo test --verbose --locked --features=apply,fetch,foreach,generate,luau,python,full + - name: Run luajit tests separately as its mutually exclusive with luau feature run: cargo test luajit --verbose --locked --features=luajit,full diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 039c0a86a..f9c84092a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -30,6 +30,6 @@ jobs: with: key: qsv-cache - name: Run tests - run: cargo test --verbose --locked --features=apply,fetch,foreach,generate,lua,python,full - - name: Run luajit tests separately as its mutually exclusive with lua feature + run: cargo test --verbose --locked --features=apply,fetch,foreach,generate,luau,python,full + - name: Run luajit tests separately as its mutually exclusive with luau feature run: cargo test luajit --verbose --locked --features=luajit,full