-
Notifications
You must be signed in to change notification settings - Fork 63
151 lines (133 loc) · 5.12 KB
/
build-test-all.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
name: Build & test all configs
on: [ push, pull_request ]
jobs:
release-notice:
name: This is a release build
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- name: Show version
run: echo "This is a release build for v${GITHUB_REF/refs\/tags\/v/}"
build:
strategy:
matrix:
crate:
- vhdl_lang
- vhdl_ls
target:
- x86_64-unknown-linux-gnu
- x86_64-unknown-linux-musl
- x86_64-pc-windows-msvc
- aarch64-apple-darwin
rust:
- stable
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
ext: ""
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
ext: ""
- target: x86_64-pc-windows-msvc
os: windows-latest
ext: .exe
- target: aarch64-apple-darwin
os: macos-latest
ext: ""
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
target: x86_64-unknown-linux-musl
components: rustfmt, clippy
- name: Add Apple Silicon Dependencies
run: rustup target add aarch64-apple-darwin
- uses: awalsh128/cache-apt-pkgs-action@v1
if: matrix.os == 'ubuntu-latest'
with:
packages: musl-tools # provides musl-gcc
version: 1.0
- name: Build
run: cargo build --manifest-path ${{ matrix.crate }}/Cargo.toml --release --target ${{ matrix.target }}
- name: Test
if: matrix.os != 'macos-latest' # There are no free runners for Apple Silicon available at the moment
run: cargo test --manifest-path ${{ matrix.crate }}/Cargo.toml --release --target ${{ matrix.target }}
- name: rustfmt
if: matrix.os == 'ubuntu-latest' && matrix.rust == 'stable'
run: cargo fmt --package ${{ matrix.crate }} -- --check
- name: clippy
if: matrix.os == 'ubuntu-latest'
run: cargo clippy --package ${{ matrix.crate }} --all-targets --all-features -- -D warnings
- name: Assemble
if: matrix.rust == 'stable'
run: |
mkdir ${{ matrix.crate }}-${{ matrix.target }}
mkdir ${{ matrix.crate }}-${{ matrix.target }}/bin
cp -R vhdl_libraries ${{ matrix.crate }}-${{ matrix.target }}
cp target/${{ matrix.target }}/release/${{ matrix.crate }}${{ matrix.ext }} ${{ matrix.crate }}-${{ matrix.target }}/bin
- name: Upload
if: matrix.rust == 'stable'
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.crate }}-${{ matrix.target }}
path: ${{ matrix.crate }}-${{ matrix.target }}
release:
name: Release
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
needs: build
steps:
- name: Get version
id: v
run: |
echo "v=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
echo "Version is v${GITHUB_REF/refs\/tags\/v/}"
- uses: actions/checkout@v4
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
name: vhdl_*
path: ~/temp
- name: Check vhdl_lang version
run: |
chmod u+x ~/temp/vhdl_lang-x86_64-unknown-linux-musl/bin/vhdl_lang
version_string=$(~/temp/vhdl_lang-x86_64-unknown-linux-musl/bin/vhdl_lang --version)
if [ "$version_string" != "vhdl_lang $v" ]
then
echo "Version string mismatch (\"$version_string\" != \"vhdl_lang $v\""
exit 1
else
echo "Version string matched"
fi
- name: Check vhdl_ls version
run: |
chmod u+x ~/temp/vhdl_ls-x86_64-unknown-linux-musl/bin/vhdl_ls
version_string=$(~/temp/vhdl_ls-x86_64-unknown-linux-musl/bin/vhdl_ls --version)
if [ "$version_string" != "vhdl_ls $v" ]
then
echo "Version string mismatch (\"$version_string\" != \"vhdl_lang $v\""
exit 1
else
echo "Version string matched"
fi
- name: Zip artifacts
run: |
cd ~/temp
chmod +x */bin/vhdl*
zip -r vhdl_lang-x86_64-unknown-linux-gnu.zip vhdl_lang-x86_64-unknown-linux-gnu
zip -r vhdl_ls-x86_64-unknown-linux-gnu.zip vhdl_ls-x86_64-unknown-linux-gnu
zip -r vhdl_lang-x86_64-unknown-linux-musl.zip vhdl_lang-x86_64-unknown-linux-musl
zip -r vhdl_ls-x86_64-unknown-linux-musl.zip vhdl_ls-x86_64-unknown-linux-musl
zip -r vhdl_lang-x86_64-pc-windows-msvc.zip vhdl_lang-x86_64-pc-windows-msvc
zip -r vhdl_ls-x86_64-pc-windows-msvc.zip vhdl_ls-x86_64-pc-windows-msvc
zip -r vhdl_ls-aarch64-apple-darwin.zip vhdl_ls-aarch64-apple-darwin
zip -r vhdl_lang-aarch64-apple-darwin.zip vhdl_lang-aarch64-apple-darwin
- name: Do release
uses: ncipollo/release-action@v1
with:
draft: false
artifacts: "~/temp/*.zip"
token: ${{ secrets.GITHUB_TOKEN }}