mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
chore: remove protoc dep from CI (#26050)
It shouldn't be needed anymore
This commit is contained in:
parent
9a92603a14
commit
fc293c68b5
@ -1,9 +1,8 @@
|
|||||||
FROM mcr.microsoft.com/vscode/devcontainers/rust:1-bullseye
|
FROM mcr.microsoft.com/vscode/devcontainers/rust:1-bullseye
|
||||||
|
|
||||||
# Install cmake and protobuf-compiler
|
# Install cmake
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y cmake \
|
&& apt-get install -y cmake \
|
||||||
&& apt-get install -y protobuf-compiler \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Install Deno
|
# Install Deno
|
||||||
|
6
.github/workflows/cargo_publish.yml
vendored
6
.github/workflows/cargo_publish.yml
vendored
@ -32,12 +32,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
deno-version: v1.x
|
deno-version: v1.x
|
||||||
|
|
||||||
- name: Install protoc
|
|
||||||
uses: arduino/setup-protoc@v3
|
|
||||||
with:
|
|
||||||
version: '21.12'
|
|
||||||
repo-token: '${{ secrets.GITHUB_TOKEN }}'
|
|
||||||
|
|
||||||
- name: Publish
|
- name: Publish
|
||||||
env:
|
env:
|
||||||
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
||||||
|
6
.github/workflows/ci.generate.ts
vendored
6
.github/workflows/ci.generate.ts
vendored
@ -191,11 +191,6 @@ const installNodeStep = {
|
|||||||
uses: "actions/setup-node@v4",
|
uses: "actions/setup-node@v4",
|
||||||
with: { "node-version": 18 },
|
with: { "node-version": 18 },
|
||||||
};
|
};
|
||||||
const installProtocStep = {
|
|
||||||
name: "Install protoc",
|
|
||||||
uses: "arduino/setup-protoc@v3",
|
|
||||||
with: { "version": "21.12", "repo-token": "${{ secrets.GITHUB_TOKEN }}" },
|
|
||||||
};
|
|
||||||
const installDenoStep = {
|
const installDenoStep = {
|
||||||
name: "Install Deno",
|
name: "Install Deno",
|
||||||
uses: "denoland/setup-deno@v1",
|
uses: "denoland/setup-deno@v1",
|
||||||
@ -494,7 +489,6 @@ const ci = {
|
|||||||
if: "matrix.job == 'bench' || matrix.job == 'test'",
|
if: "matrix.job == 'bench' || matrix.job == 'test'",
|
||||||
...installNodeStep,
|
...installNodeStep,
|
||||||
},
|
},
|
||||||
installProtocStep,
|
|
||||||
{
|
{
|
||||||
if: [
|
if: [
|
||||||
"matrix.profile == 'release' &&",
|
"matrix.profile == 'release' &&",
|
||||||
|
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@ -199,12 +199,6 @@ jobs:
|
|||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: 18
|
node-version: 18
|
||||||
- name: Install protoc
|
|
||||||
uses: arduino/setup-protoc@v3
|
|
||||||
with:
|
|
||||||
version: '21.12'
|
|
||||||
repo-token: '${{ secrets.GITHUB_TOKEN }}'
|
|
||||||
if: '!(matrix.skip)'
|
|
||||||
- if: |-
|
- if: |-
|
||||||
!(matrix.skip) && (matrix.profile == 'release' &&
|
!(matrix.skip) && (matrix.profile == 'release' &&
|
||||||
matrix.job == 'test' &&
|
matrix.job == 'test' &&
|
||||||
|
Loading…
Reference in New Issue
Block a user