Skip to content

Commit ea3b870

Browse files
committed
tools: remove envinfo from our workflows
Signed-off-by: Antoine du Hamel <duhamelantoine1995@gmail.com> PR-URL: #64259 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: René <contact.9a5d6388@renegade334.me.uk> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent 3966eb6 commit ea3b870

13 files changed

Lines changed: 0 additions & 38 deletions

.github/workflows/build-tarball.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ jobs:
8282
with:
8383
python-version: ${{ env.PYTHON_VERSION }}
8484
allow-prereleases: true
85-
- name: Environment Information
86-
run: npx envinfo@7.21.0
8785
- name: Make tarball
8886
run: |
8987
export DISTTYPE=nightly
@@ -124,8 +122,6 @@ jobs:
124122
uses: Mozilla-Actions/sccache-action@9e7fa8a12102821edf02ca5dbea1acd0f89a2696 # v0.0.10
125123
with:
126124
version: v0.16.0
127-
- name: Environment Information
128-
run: npx envinfo@7.21.0
129125
- name: Download tarball
130126
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
131127
with:

.github/workflows/coverage-linux-without-intl.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ jobs:
6767
uses: Mozilla-Actions/sccache-action@9e7fa8a12102821edf02ca5dbea1acd0f89a2696 # v0.0.10
6868
with:
6969
version: v0.16.0
70-
- name: Environment Information
71-
run: npx envinfo@7.21.0
7270
- name: Install gcovr
7371
run: pip install gcovr==7.2
7472
- name: Configure

.github/workflows/coverage-linux.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ jobs:
6767
uses: Mozilla-Actions/sccache-action@9e7fa8a12102821edf02ca5dbea1acd0f89a2696 # v0.0.10
6868
with:
6969
version: v0.16.0
70-
- name: Environment Information
71-
run: npx envinfo@7.21.0
7270
- name: Install gcovr
7371
run: pip install gcovr==7.2
7472
- name: Configure

.github/workflows/coverage-windows.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,6 @@ jobs:
8383
run: |
8484
rustup override set "$RUSTC_VERSION"
8585
rustup --version
86-
- name: Environment Information
87-
run: npx envinfo@7.21.0
8886
- name: Build
8987
run: ./vcbuild.bat clang-cl v8temporal
9088
# TODO(bcoe): investigate tests that fail with coverage enabled

.github/workflows/daily-wpt-fyi.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ jobs:
4343
with:
4444
python-version: ${{ env.PYTHON_VERSION }}
4545
allow-prereleases: true
46-
- name: Environment Information
47-
run: npx envinfo@7.21.0
4846

4947
# install a version and checkout
5048
- name: Get latest nightly

.github/workflows/daily.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ jobs:
2323
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
2424
with:
2525
node-version: ${{ env.NODE_VERSION }}
26-
- name: Environment Information
27-
run: npx envinfo@7.21.0
2826
- name: Build lto
2927
run: |
3028
sudo apt-get update && sudo apt-get install ninja-build -y

.github/workflows/doc.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ jobs:
3131
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
3232
with:
3333
node-version: ${{ env.NODE_VERSION }}
34-
- name: Environment Information
35-
run: npx envinfo@7.21.0
3634
- name: Build
3735
run: NODE=$(command -v node) make doc-only
3836
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1

.github/workflows/linters.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ jobs:
3232
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
3333
with:
3434
node-version: ${{ env.NODE_VERSION }}
35-
- name: Environment Information
36-
run: npx envinfo@7.21.0
3735
- name: Lint addon docs
3836
run: NODE=$(command -v node) make lint-addon-docs
3937
lint-cpp:
@@ -48,8 +46,6 @@ jobs:
4846
with:
4947
python-version: ${{ env.PYTHON_VERSION }}
5048
allow-prereleases: true
51-
- name: Environment Information
52-
run: npx envinfo@7.21.0
5349
- name: Lint C/C++ files
5450
run: make lint-cpp
5551
format-cpp:
@@ -69,8 +65,6 @@ jobs:
6965
with:
7066
python-version: ${{ env.PYTHON_VERSION }}
7167
allow-prereleases: true
72-
- name: Environment Information
73-
run: npx envinfo@7.21.0
7468
- name: Format C/C++ files
7569
run: |
7670
make format-cpp-build
@@ -102,8 +96,6 @@ jobs:
10296
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
10397
with:
10498
node-version: ${{ env.NODE_VERSION }}
105-
- name: Environment Information
106-
run: npx envinfo@7.21.0
10799
- name: Lint JavaScript files
108100
run: |
109101
set +e
@@ -183,8 +175,6 @@ jobs:
183175
with:
184176
python-version: ${{ env.PYTHON_VERSION }}
185177
allow-prereleases: true
186-
- name: Environment Information
187-
run: npx envinfo@7.21.0
188178
- name: Lint Python
189179
run: |
190180
make lint-py-build
@@ -207,8 +197,6 @@ jobs:
207197
with:
208198
python-version: ${{ env.PYTHON_VERSION }}
209199
allow-prereleases: true
210-
- name: Environment Information
211-
run: npx envinfo@7.21.0
212200
- name: Lint YAML
213201
run: |
214202
make lint-yaml-build || true

.github/workflows/stress-test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,6 @@ jobs:
7979
uses: Mozilla-Actions/sccache-action@9e7fa8a12102821edf02ca5dbea1acd0f89a2696 # v0.0.10
8080
with:
8181
version: v0.16.0
82-
- name: Environment Information
83-
run: npx envinfo@7.21.0
8482
# This is needed due to https://github.com/nodejs/build/issues/3878
8583
- name: Cleanup
8684
if: runner.os == 'macOS'

.github/workflows/test-internet.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,6 @@ jobs:
6464
uses: Mozilla-Actions/sccache-action@9e7fa8a12102821edf02ca5dbea1acd0f89a2696 # v0.0.10
6565
with:
6666
version: v0.16.0
67-
- name: Environment Information
68-
run: npx envinfo@7.21.0
6967
- name: Build
7068
run: make build-ci -j4 V=1 CONFIG_FLAGS="--error-on-warn"
7169
- name: Test Internet

0 commit comments

Comments
 (0)