Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,8 @@
LUA_LIB_NAME = "lua"
LUA_LIB = { value = "src/lua5.1/", relative = true }
LUA_INC = { value = "src/lua5.1/include", relative = true }

# This env var must be set so that `prost-build` doesn't try to build protoc (as this would require
# `cmake` to be installed). The value here doesn't matter, as it will be overriden to a valid path
# (pointing to a bundled protoc from `protoc-bundled`) by `build.rs` later on.
PROTOC = { value = "protoc.exe", relative = true }
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ on:
pull_request:
branches: [main]

env:
CARGO_TERM_COLOR: always

jobs:

rust:
name: Rust
runs-on: ubuntu-latest

env:
CARGO_TERM_COLOR: always

steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
Loading