-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy path20402-debian11-container-test.yml
More file actions
49 lines (44 loc) · 1.59 KB
/
20402-debian11-container-test.yml
File metadata and controls
49 lines (44 loc) · 1.59 KB
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
## **Warnings When Modifying CI Files**
### 1. **Do not modify CI files unless absolutely necessary.**
### 2. **Do not disable any CI tests**—all tests must remain active.
### 3. **Do not change the current ISO build workflow.**
### 4. **CI test scripts follow a fixed numbering system.** To add new tests, use a new range (e.g., `30000-40000`, `50000`), and do not modify existing numbered files.
### 5. **If using `penguins-wardrobe` for builds, add new CI tests instead of modifying existing files or workflows.**
### 6. **All CI file modifications must be submitted in a new Pull Request and reviewed by @gnuhub—do not merge directly.**
### 7. **For experimental changes, create a new branch instead of modifying `master`.**
name: 20402-debian11
on:
push:
paths-ignore:
- '*.md'
- '*.txt'
- '.github/**'
- 'pods/**'
branches:
- 'master'
workflow_dispatch:
jobs:
build:
name: 20402-debian11-build
runs-on: ubuntu-24.04
timeout-minutes: 7200
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Setup nodejs 18
uses: actions/setup-node@v2
with:
node-version: 18.x
- name: ISO build
run: |
./20402-debian11-container-test.sh
- name: ISO upload
uses: actions/upload-artifact@v4
with:
name: 20402-debian11-upload
path: ./mychroot/ci/iso/*.iso
retention-days: 1
if-no-files-found: warn
compression-level: 0
overwrite: true
include-hidden-files: false