-
Notifications
You must be signed in to change notification settings - Fork 34
115 lines (100 loc) · 4.14 KB
/
release.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
name: Build Release
permissions:
id-token: write
attestations: write
contents: write
on:
release:
types: [published]
jobs:
release:
name: Build and Release
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-20.04
target_name: i686-unknown-linux-gnu
artifact_name: libauxmos.so
- os: windows-latest
target_name: i686-pc-windows-msvc
artifact_name: auxmos.dll
debug_pdb_name: auxmos.pdb
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Toolchains (Windows)
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: i686-pc-windows-msvc
if: matrix.os == 'windows-latest'
- name: Install g++ multilib
run: |
sudo apt-get update
sudo apt install g++-multilib -y
if: matrix.os == 'ubuntu-20.04'
- name: Setup Toolchains (Ubuntu)
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: i686-unknown-linux-gnu
if: matrix.os == 'ubuntu-20.04'
- name: Build auxmos (Windows)
uses: actions-rs/cargo@v1
with:
toolchain: stable
command: build
args: --target i686-pc-windows-msvc --release
if: matrix.os == 'windows-latest'
- name: Build auxmos (Ubuntu)
uses: actions-rs/cargo@v1
with:
toolchain: stable
command: build
args: --target i686-unknown-linux-gnu --release
if: matrix.os == 'ubuntu-20.04'
- name: Create bindings (Ubuntu)
uses: actions-rs/cargo@v1
with:
toolchain: stable
command: test
args: --target i686-unknown-linux-gnu --release --package auxmos --lib -- generate_binds --exact --show-output
if: matrix.os == 'ubuntu-20.04'
- name: Upload binary to release
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/${{ matrix.target_name }}/release/${{ matrix.artifact_name }}
asset_name: ${{ matrix.artifact_name }}
tag: ${{ github.ref }}
- name: Upload debug informations to release
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/${{ matrix.target_name }}/release/${{ matrix.debug_pdb_name }}
asset_name: ${{ matrix.debug_pdb_name }}
tag: ${{ github.ref }}
if: matrix.os == 'windows-latest'
- name: Upload binding to release
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: bindings.dm
asset_name: bindings.dm
tag: ${{ github.ref }}
if: matrix.os == 'ubuntu-20.04'
- name: Generate build provenance (Binaries)
uses: actions/attest-build-provenance@v1
with:
subject-path: target/${{ matrix.target_name }}/release/${{ matrix.artifact_name }}
- name: Generate build provenance (Debug information)
uses: actions/attest-build-provenance@v1
with:
subject-path: target/${{ matrix.target_name }}/release/${{ matrix.debug_pdb_name }}
if: matrix.os == 'windows-latest'
- name: Generate build provenance (Bindings)
uses: actions/attest-build-provenance@v1
with:
subject-path: bindings.dm
if: matrix.os == 'ubuntu-20.04'