Node.js daily job #72
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node.js daily job | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 0 * * * | |
env: | |
NODE_VERSION: lts/* | |
CC: clang | |
CXX: clang++ | |
permissions: | |
contents: read | |
jobs: | |
build-lto: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
with: | |
persist-credentials: false | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Environment Information | |
run: npx envinfo | |
- name: Build lto | |
run: | | |
apt-get update && apt-get install ninja-build python-is-python3 -y | |
./configure --enable-lto --ninja | |
ninja -C out/Release |