Skip to content

Commit ac57645

Browse files
Remove build.rs (#657)
Co-authored-by: Marcus Griep <[email protected]>
1 parent 38ba547 commit ac57645

33 files changed

+141
-246
lines changed

.github/workflows/continuous-integration-workflow.yaml

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ jobs:
3737
default: true
3838
profile: minimal
3939
components: clippy
40+
- name: Install Protoc
41+
uses: arduino/setup-protoc@v1
42+
with:
43+
repo-token: ${{ secrets.GITHUB_TOKEN }}
4044
- name: install ninja
4145
uses: seanmiddleditch/gha-setup-ninja@v3
4246
- name: clippy
@@ -59,6 +63,10 @@ jobs:
5963
- uses: actions/checkout@v2
6064
with:
6165
submodules: recursive
66+
- name: Install Protoc
67+
uses: arduino/setup-protoc@v1
68+
with:
69+
repo-token: ${{ secrets.GITHUB_TOKEN }}
6270
- name: install ninja
6371
uses: seanmiddleditch/gha-setup-ninja@v3
6472
- name: cargo update -Zminimal-versions
@@ -96,6 +104,10 @@ jobs:
96104
toolchain: ${{ matrix.toolchain }}
97105
default: true
98106
profile: minimal
107+
- name: Install Protoc
108+
uses: arduino/setup-protoc@v1
109+
with:
110+
repo-token: ${{ secrets.GITHUB_TOKEN }}
99111
- name: install ninja
100112
uses: seanmiddleditch/gha-setup-ninja@v3
101113
- uses: Swatinem/rust-cache@v1
@@ -123,6 +135,10 @@ jobs:
123135
toolchain: nightly
124136
default: true
125137
profile: minimal
138+
- name: Install Protoc
139+
uses: arduino/setup-protoc@v1
140+
with:
141+
repo-token: ${{ secrets.GITHUB_TOKEN }}
126142
- uses: Swatinem/rust-cache@v1
127143
- name: install cargo-no-std-check
128144
uses: actions-rs/cargo@v1
@@ -149,21 +165,3 @@ jobs:
149165
with:
150166
command: check
151167
args: --manifest-path prost-build/Cargo.toml
152-
153-
vendored:
154-
runs-on: ubuntu-latest
155-
steps:
156-
- name: checkout
157-
uses: actions/checkout@v2
158-
with:
159-
submodules: recursive
160-
- name: install toolchain
161-
uses: actions-rs/toolchain@v1
162-
with:
163-
toolchain: stable
164-
default: true
165-
profile: minimal
166-
- uses: Swatinem/rust-cache@v1
167-
- name: cargo check
168-
run: cd test-vendored && cargo check
169-

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
target
22
Cargo.lock
3+
4+
.DS_Store

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ exclude = [
3333
"fuzz",
3434
# Same counts for the afl fuzz targets
3535
"afl",
36-
"test-vendored"
3736
]
3837

3938
[lib]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)