Skip to content

Commit f5da714

Browse files
committed
re-generate top commons
1 parent 75c7829 commit f5da714

18 files changed

Lines changed: 59 additions & 246 deletions

.github/workflows/build-darwin-arm64.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
# Automatically generated from npm-packages-helper/templates/*.
44
#
55
# This file is part of the xPack project (http://xpack.github.io).
6-
# Copyright (c) 2021 Liviu Ionescu. All rights reserved.
6+
# Copyright (c) 2021-2025 Liviu Ionescu. All rights reserved.
77
#
88
# Permission to use, copy, modify, and/or distribute this software
99
# for any purpose is hereby granted, under the terms of the MIT license.
1010
#
1111
# If a copy of the license was not distributed with this file, it can
12-
# be obtained from https://opensource.org/licenses/MIT.
12+
# be obtained from https://opensource.org/licenses/mit.
1313
#
1414
# -----------------------------------------------------------------------------
1515

@@ -69,7 +69,7 @@ jobs:
6969
darwin-arm64-build:
7070
name: 'darwin-arm64 bison ${{github.event.inputs.version}} build'
7171
timeout-minutes: 2880 # 2 days
72-
runs-on: [self-hosted, macos, apple]
72+
runs-on: macos-14
7373
env:
7474
XBB_ENVIRONMENT_MACOSX_DEPLOYMENT_TARGET: '11.0'
7575
steps:
@@ -142,10 +142,6 @@ jobs:
142142
tag: 'test'
143143
token: ${{secrets.PUBLISH_TOKEN}}
144144

145-
- name: 'Rename working area'
146-
# For just in case absolute paths remain unprocessed.
147-
run: mv -v build-assets/build build-assets/build-$(date -u +%Y%m%d-%H%M%S)
148-
149145
darwin-arm64-test:
150146
name: 'darwin-arm64 bison ${{github.event.inputs.version}} test'
151147
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md
@@ -159,7 +155,6 @@ jobs:
159155
sw_vers
160156
ls -lA /Library/Developer/CommandLineTools/SDKs || true
161157
ls -lA /Applications
162-
sudo xcode-select --switch /Applications/Xcode_15.4.app
163158
xcode-select --print-path
164159
xcodebuild -version || true
165160
pkgutil --pkg-info=com.apple.pkg.CLTools_Executables || true

.github/workflows/build-darwin-x64.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
# Automatically generated from npm-packages-helper/templates/*.
44
#
55
# This file is part of the xPack project (http://xpack.github.io).
6-
# Copyright (c) 2021 Liviu Ionescu. All rights reserved.
6+
# Copyright (c) 2021-2025 Liviu Ionescu. All rights reserved.
77
#
88
# Permission to use, copy, modify, and/or distribute this software
99
# for any purpose is hereby granted, under the terms of the MIT license.
1010
#
1111
# If a copy of the license was not distributed with this file, it can
12-
# be obtained from https://opensource.org/licenses/MIT.
12+
# be obtained from https://opensource.org/licenses/mit.
1313
#
1414
# -----------------------------------------------------------------------------
1515

@@ -69,7 +69,7 @@ jobs:
6969
darwin-x64-build:
7070
name: 'darwin-x64 bison ${{github.event.inputs.version}} build'
7171
timeout-minutes: 2880 # 2 days
72-
runs-on: [self-hosted, macos, intel]
72+
runs-on: macos-13
7373
env:
7474
XBB_ENVIRONMENT_MACOSX_DEPLOYMENT_TARGET: '11.0'
7575
steps:
@@ -142,10 +142,6 @@ jobs:
142142
tag: 'test'
143143
token: ${{secrets.PUBLISH_TOKEN}}
144144

145-
- name: 'Rename working area'
146-
# For just in case absolute paths remain unprocessed.
147-
run: mv -v build-assets/build build-assets/build-$(date -u +%Y%m%d-%H%M%S)
148-
149145
darwin-x64-test:
150146
name: 'darwin-x64 bison ${{github.event.inputs.version}} test'
151147
# https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
@@ -159,7 +155,6 @@ jobs:
159155
sw_vers
160156
ls -lA /Library/Developer/CommandLineTools/SDKs || true
161157
ls -lA /Applications
162-
sudo xcode-select --switch /Applications/Xcode_14.2.app
163158
xcode-select --print-path
164159
xcodebuild -version || true
165160
pkgutil --pkg-info=com.apple.pkg.CLTools_Executables || true

.github/workflows/build-linux-arm64.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
# Automatically generated from npm-packages-helper/templates/*.
44
#
55
# This file is part of the xPack project (http://xpack.github.io).
6-
# Copyright (c) 2021 Liviu Ionescu. All rights reserved.
6+
# Copyright (c) 2021-2025 Liviu Ionescu. All rights reserved.
77
#
88
# Permission to use, copy, modify, and/or distribute this software
99
# for any purpose is hereby granted, under the terms of the MIT license.
1010
#
1111
# If a copy of the license was not distributed with this file, it can
12-
# be obtained from https://opensource.org/licenses/MIT.
12+
# be obtained from https://opensource.org/licenses/mit.
1313
#
1414
# -----------------------------------------------------------------------------
1515

@@ -69,7 +69,7 @@ jobs:
6969
linux-arm64-build:
7070
name: 'linux-arm64 bison ${{github.event.inputs.version}} build'
7171
timeout-minutes: 2880 # 2 days
72-
runs-on: [self-hosted, linux, arm64, xbbla, xbblax]
72+
runs-on: ubuntu-24.04-arm
7373
defaults:
7474
run:
7575
shell: bash
@@ -86,11 +86,6 @@ jobs:
8686
ls -lLA
8787
env | sort | grep -E '^[^ \t]+='
8888
89-
- name: 'Clean working area' # Mandatory for self-hosted runners.
90-
run: |
91-
chmod -Rf a+w * || true
92-
rm -rf * .git*
93-
9489
- name: 'Checkout project'
9590
uses: actions/checkout@v1 # v1 for old Git
9691
with:
@@ -138,10 +133,6 @@ jobs:
138133
tag: 'test'
139134
token: ${{secrets.PUBLISH_TOKEN}}
140135

141-
- name: 'Rename working area'
142-
# For just in case absolute paths remain unprocessed.
143-
run: echo mv -v build-assets/build build-assets/build-$(date -u +%Y%m%d-%H%M%S)
144-
145136
linux-arm64-test:
146137
name: 'linux-arm64 bison ${{github.event.inputs.version}} test'
147138
runs-on: ubuntu-24.04-arm

.github/workflows/build-linux-x64.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
# Automatically generated from npm-packages-helper/templates/*.
44
#
55
# This file is part of the xPack project (http://xpack.github.io).
6-
# Copyright (c) 2021 Liviu Ionescu. All rights reserved.
6+
# Copyright (c) 2021-2025 Liviu Ionescu. All rights reserved.
77
#
88
# Permission to use, copy, modify, and/or distribute this software
99
# for any purpose is hereby granted, under the terms of the MIT license.
1010
#
1111
# If a copy of the license was not distributed with this file, it can
12-
# be obtained from https://opensource.org/licenses/MIT.
12+
# be obtained from https://opensource.org/licenses/mit.
1313
#
1414
# -----------------------------------------------------------------------------
1515

@@ -69,7 +69,7 @@ jobs:
6969
linux-x64-build:
7070
name: 'linux-x64 bison ${{github.event.inputs.version}} build'
7171
timeout-minutes: 2880 # 2 days
72-
runs-on: [self-hosted, linux, x64, xbblix]
72+
runs-on: ubuntu-24.04
7373
defaults:
7474
run:
7575
shell: bash
@@ -86,11 +86,6 @@ jobs:
8686
ls -lLA
8787
env | sort | grep -E '^[^ \t]+='
8888
89-
- name: 'Clean working area' # Mandatory for self-hosted runners.
90-
run: |
91-
chmod -Rf a+w * || true
92-
rm -rf * .git*
93-
9489
- name: 'Checkout project'
9590
uses: actions/checkout@v1 # v1 for old Git
9691
with:
@@ -138,10 +133,6 @@ jobs:
138133
tag: 'test'
139134
token: ${{secrets.PUBLISH_TOKEN}}
140135

141-
- name: 'Rename working area'
142-
# For just in case absolute paths remain unprocessed.
143-
run: echo mv -v build-assets/build build-assets/build-$(date -u +%Y%m%d-%H%M%S)
144-
145136
linux-x64-test:
146137
name: 'linux-x64 bison ${{github.event.inputs.version}} test'
147138
runs-on: ubuntu-24.04

.github/workflows/deep-clean.yml

Lines changed: 0 additions & 165 deletions
This file was deleted.

.github/workflows/publish-github-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
# Automatically generated from npm-packages-helper/templates/*.
44
#
55
# This file is part of the xPack project (http://xpack.github.io).
6-
# Copyright (c) 2021 Liviu Ionescu. All rights reserved.
6+
# Copyright (c) 2021-2025 Liviu Ionescu. All rights reserved.
77
#
88
# Permission to use, copy, modify, and/or distribute this software
99
# for any purpose is hereby granted, under the terms of the MIT license.
1010
#
1111
# If a copy of the license was not distributed with this file, it can
12-
# be obtained from https://opensource.org/licenses/MIT.
12+
# be obtained from https://opensource.org/licenses/mit.
1313
#
1414
# -----------------------------------------------------------------------------
1515

.github/workflows/publish-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
# Automatically generated from npm-packages-helper/templates/*.
44
#
55
# This file is part of the xPack project (http://xpack.github.io).
6-
# Copyright (c) 2021 Liviu Ionescu. All rights reserved.
6+
# Copyright (c) 2021-2025 Liviu Ionescu. All rights reserved.
77
#
88
# Permission to use, copy, modify, and/or distribute this software
99
# for any purpose is hereby granted, under the terms of the MIT license.
1010
#
1111
# If a copy of the license was not distributed with this file, it can
12-
# be obtained from https://opensource.org/licenses/MIT.
12+
# be obtained from https://opensource.org/licenses/mit.
1313
#
1414
# -----------------------------------------------------------------------------
1515

@@ -87,7 +87,7 @@ jobs:
8787
bodyFile: '.github/workflows/body-github-release.md'
8888
commit: 'xpack-development'
8989
draft: true
90-
name: 'xPack GNU bison v${{github.event.inputs.version}}'
90+
name: 'xPack xPack GNU bison v${{github.event.inputs.version}}'
9191
omitBodyDuringUpdate: true
9292
omitDraftDuringUpdate: true
9393
omitNameDuringUpdate: true

0 commit comments

Comments
 (0)