Skip to content

Commit

Permalink
change workflows to replace obsolete lua feature with luau feature
Browse files Browse the repository at this point in the history
  • Loading branch information
jqnatividad committed Nov 13, 2022
1 parent f8051e1 commit f7951a0
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/rust-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/rust-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit f7951a0

Please sign in to comment.