-
Notifications
You must be signed in to change notification settings - Fork 302
48 lines (48 loc) · 1.63 KB
/
qsfp-build.yml
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
name: Build QSFP Service - Hourly
run-name: Build QSFP Service - Hourly
on:
pull_request:
# Allow manually triggering the workflow
workflow_dispatch:
# Also schedule the workflow to run every 3 hours during day only
# ShipIt job will sync hourly around HH:21, so schedule the run with 15 minute offset
schedule:
# Run daily at 1:36AM UTC = 6:36PM PDT
# Run daily at 1:36PM UTC = 6:36AM PDT
# Run daily at 4:36PM UTC = 9:36AM PDT
# Run daily at 7:36PM UTC = 12:36PM PDT
# Run daily at 10:36PM UTC = 3:36PM PDT
- cron: '36 1,13,16,19,22 * * *'
jobs:
Qsfp-Service-Build-Hourly:
runs-on: 32-core-ubuntu
steps:
- run: echo "Confirming hardware specications:"; sudo lscpu
- name: Clean workspace
run: sudo rm -rf ${{ github.workspace }}/*
- name: Check out repository code
uses: actions/checkout@v4
- name: Run Docker-based build for FBOSS
run: >
sudo
./fboss/oss/scripts/docker-build.py
--scratch-path
${{ github.workspace }}/build-output
--target
qsfp_targets
--no-docker-output
--no-system-deps
- name: Package FBOSS binaries and library dependencies
run: >
sudo
./fboss/oss/scripts/package-fboss.py
--scratch-path
${{ github.workspace }}/build-output
--compress
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: fboss
path: ${{ github.workspace }}/build-output/fboss_bins.tar.zst
# Explicitly set the retention at the object level
retention-days: 14