FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node/.github/workflows/build-tarball.yml at main · nodejs/node · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
nodejs
/
node
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
36.6k
Star
120k
Code
Issues
639
Pull requests
567
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
node
/
.github
/
workflows
/
build-tarball.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
137 lines (132 loc) · 4.25 KB
Breadcrumbs
node
/
.github
/
workflows
/
build-tarball.yml
Copy path
File metadata and controls
137 lines (132 loc) · 4.25 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
name
:
Build from tarball
on
:
pull_request
:
types
:
[opened, synchronize, reopened, ready_for_review]
paths-ignore
:
-
'
**.md
'
-
'
**.nix
'
-
eslint.config.mjs
-
'
**/eslint.config_partial.mjs
'
-
android-configure
-
android-configure.py
-
android-patches/**
-
benchmarks/**
-
codecov.yml
-
doc/**
-
pyproject.yml
-
tsconfig.json
-
test/internet/**
-
tools/actions/**
-
tools/dep_updaters/**
-
tools/doc/**
-
tools/eslint-rules/**
-
tools/eslint/**
-
tools/lint-md/**
-
tools/nix/**
-
typings/**
-
vcbuild.bat
-
.**
-
'
!.github/workflows/build-tarball.yml
'
push
:
branches
:
-
main
-
v[0-9]+.x-staging
-
v[0-9]+.x
paths-ignore
:
-
'
**.md
'
-
'
**.nix
'
-
eslint.config.mjs
-
'
**/eslint.config_partial.mjs
'
-
android-configure
-
android-configure.py
-
android-patches/**
-
benchmarks/**
-
codecov.yml
-
doc/**
-
pyproject.yml
-
tsconfig.json
-
test/internet/**
-
tools/actions/**
-
tools/dep_updaters/**
-
tools/doc/**
-
tools/eslint-rules/**
-
tools/eslint/**
-
tools/lint-md/**
-
tools/nix/**
-
typings/**
-
vcbuild.bat
-
.**
-
'
!.github/workflows/build-tarball.yml
'
concurrency
:
group
:
${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress
:
true
env
:
PYTHON_VERSION
:
'
3.14
'
FLAKY_TESTS
:
keep_retrying
CLANG_VERSION
:
'
19
'
permissions
:
contents
:
read
jobs
:
build-tarball
:
if
:
github.event.pull_request.draft == false
runs-on
:
ubuntu-slim
steps
:
-
uses
:
actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
#
v7.0.0
with
:
persist-credentials
:
false
-
name
:
Set up Python ${{ env.PYTHON_VERSION }}
uses
:
actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97
#
v7.0.0
with
:
python-version
:
${{ env.PYTHON_VERSION }}
allow-prereleases
:
true
-
name
:
Make tarball
run
:
|
export DISTTYPE=nightly
export DATESTRING=$(date "+%Y-%m-%d")
export COMMIT=$(git rev-parse --short=10 "$GITHUB_SHA")
./configure && make tar -j4 SKIP_XZ=1
-
name
:
Upload tarball artifact
uses
:
actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
#
v7.0.1
with
:
path
:
'
*.tar.gz
'
archive
:
false
test-tarball-linux
:
needs
:
build-tarball
runs-on
:
ubuntu-24.04-arm
env
:
CC
:
${{ (github.base_ref == 'main' || github.ref_name == 'main') && 'sccache' || '' }} clang-19
CXX
:
${{ (github.base_ref == 'main' || github.ref_name == 'main') && 'sccache' || '' }} clang++-19
SCCACHE_GHA_ENABLED
:
${{ github.base_ref == 'main' || github.ref_name == 'main' }}
SCCACHE_IDLE_TIMEOUT
:
'
0
'
steps
:
-
uses
:
actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
#
v7.0.0
with
:
persist-credentials
:
false
sparse-checkout
:
.github/actions/install-clang
sparse-checkout-cone-mode
:
false
-
name
:
Install Clang ${{ env.CLANG_VERSION }}
uses
:
./.github/actions/install-clang
with
:
clang-version
:
${{ env.CLANG_VERSION }}
-
name
:
Set up Python ${{ env.PYTHON_VERSION }}
uses
:
actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97
#
v7.0.0
with
:
python-version
:
${{ env.PYTHON_VERSION }}
allow-prereleases
:
true
-
name
:
Set up sccache
if
:
github.base_ref == 'main' || github.ref_name == 'main'
uses
:
Mozilla-Actions/sccache-action@fc920bf0ec8de6ee65d409111f7ec508035751ba
#
v0.0.11
with
:
version
:
v0.17.0
-
name
:
Download tarball
uses
:
actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
#
v8.0.1
with
:
path
:
tarballs
-
name
:
Extract tarball
run
:
|
tar xzf tarballs/*.tar.gz -C "$RUNNER_TEMP"
echo "TAR_DIR=$RUNNER_TEMP/$(basename tarballs/*.tar.gz .tar.gz)" >> "$GITHUB_ENV"
-
name
:
Build
run
:
make -C "$TAR_DIR" build-ci -j4 V=1
-
name
:
Test
run
:
make -C "$TAR_DIR" test-ci -j1 V=1 TEST_CI_ARGS="-p dots --measure-flakiness 9"
Back
|
FazBrowse Home
|
New Git URL