-
-
Notifications
You must be signed in to change notification settings - Fork 8
120 lines (109 loc) · 3.72 KB
/
dev-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
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
name: Dev
on:
workflow_dispatch:
inputs:
source:
description: "Source ref used to build bindings. Uses `github.ref`` by default."
required: false
sha:
description: "Source SHA used to build bindings. Uses `github.sha`` by default."
required: false
push:
branches: [dev*, refactor*, dev/**, refactor/**]
env:
CARGO_NET_RETRY: 10
RUSTUP_MAX_RETRIES: 10
CARGO_TERM_COLOR: always
CARGO_TERM_PROGRESS_WHEN: never
CARGO_INCREMENTAL: 1
# logging:
RUST_LOG: trace
CARGO_PLAYDATE_LOG: trace
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-14
- ubuntu-latest
- windows-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.source || github.ref || github.event.ref }}
- name: Cache
uses: actions/cache@v4
with:
path: |
target/
~/.cargo
key: ${{ runner.os }}-dev-build-${{ hashFiles('Cargo.lock') }}
- name: Config
run: |
mkdir -p .cargo
cp -rf .github/config.toml .cargo/config.toml
- name: Install Deps
uses: ./.github/actions/tools-deps
- name: prepare names
id: names
shell: bash
run: |
echo "os=-${{ runner.os }}" >> "$GITHUB_OUTPUT"
echo "ext=${{ ((runner.os == 'Windows') && '.exe') || ' ' }}" >> "$GITHUB_OUTPUT"
echo "suffix=${{ (runner.os == 'Windows' && format('-{0}', runner.arch)) || format('-{0}-{1}', runner.os, runner.arch) }}" >> "$GITHUB_OUTPUT"
echo "full=${{ (runner.os == 'Windows' && format('-{0}.exe', runner.arch)) || format('-{0}-{1}', runner.os, runner.arch) }}" >> "$GITHUB_OUTPUT"
- name: symbolizer
continue-on-error: true
run: cargo build -p=playdate-symbolize --bins
- name: Upload
uses: actions/upload-artifact@v4
with:
name: symbolize-utils${{ steps.names.outputs.suffix }}
path: |
target/debug/pd-addr2line${{ steps.names.outputs.ext }}
target/debug/pd-symbolize-trace${{ steps.names.outputs.ext }}
target/debug/pd-symbolize-crashlog${{ steps.names.outputs.ext }}
compression-level: 9
if-no-files-found: warn
retention-days: 3
overwrite: true
- name: pdtool
continue-on-error: true
run: cargo build -p=playdate-tool --bin=pdtool --features=tracing
- name: Upload
uses: actions/upload-artifact@v4
with:
name: pdtool${{ steps.names.outputs.full }}
path: target/debug/pdtool${{ steps.names.outputs.ext }}
if-no-files-found: warn
retention-days: 3
overwrite: true
- name: bindgen
continue-on-error: true
run: >-
cargo build --bin=pdbindgen --no-default-features
--features=cli,documentation,extra-codegen,logging,pretty-please,which-rustfmt,runtime
- name: Upload
uses: actions/upload-artifact@v4
with:
name: pdbindgen${{ steps.names.outputs.full }}
path: target/debug/pdbindgen${{ steps.names.outputs.ext }}
if-no-files-found: warn
retention-days: 3
overwrite: true
- name: cargo
continue-on-error: true
run: cargo build --bin=cargo-playdate --all-features
- name: Upload
uses: actions/upload-artifact@v4
with:
name: cargo-playdate${{ steps.names.outputs.full }}
path: target/debug/cargo-playdate${{ steps.names.outputs.ext }}
if-no-files-found: warn
retention-days: 3
overwrite: true