-
Notifications
You must be signed in to change notification settings - Fork 0
179 lines (161 loc) · 6.46 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
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
name: Build, test, upload artifact and release crate
on:
push:
env:
CARGO_TERM_COLOR: always
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
outputs:
release-id: ${{ steps.create-release.outputs.release_id }}
release-flag: ${{ steps.set-release-flag.outputs.release_flag }}
steps:
- uses: actions/checkout@v3
- name: Get Package Name
run: |
name=$(cargo metadata --no-deps --format-version 1 | jq -r '.packages[0].name')
echo "Package Name: $name"
echo "pkg_name=$name" >> $GITHUB_ENV
shell: bash
- name: Set Release Flag # Release flag is set only for a push on main branch
id: set-release-flag
run: |
current_version=$(cargo metadata --no-deps --format-version 1 | jq -r '.packages[0].version')
latest_version=$(curl -s https://crates.io/api/v1/crates/${{ env.pkg_name }} | jq -r '.versions[0].num')
echo "Current Package Version: ${current_version}"
echo "Latest Package Version: ${latest_version}"
if [ "$latest_version" != "$current_version" ]; then
echo "Version has changed. Setting release flag to true."
echo "release=true" >> $GITHUB_ENV
echo "release_flag=true" >> "$GITHUB_OUTPUT"
else
echo "Version has not changed. Setting release flag to false."
echo "release=false" >> $GITHUB_ENV
echo "release_flag=false" >> "$GITHUB_OUTPUT"
fi
echo "pkg_version=$current_version" >> $GITHUB_ENV
shell: bash
- name: Create New Release
id: create-release
if: env.release == 'true'
run: |
release_tag="v${{ env.pkg_version }}"
cargo_prerelease=("alpha" "beta" "rc")
prerelease=false
for cargo_pre in "${cargo_prerelease[@]}"; do
if [[ $pkg_version == *"$cargo_pre"* ]]; then
prerelease=true
break
fi
done
commit_msg="Release compiled executable for $release_tag"
release_data="{\"tag_name\":\"$release_tag\",\"name\":\"$release_tag\",\"body\":\"$commit_msg\",\"draft\":false,\"prerelease\":$prerelease}"
response=$(curl -X POST -H "Authorization: token ${{ secrets.GIT_TOKEN }}" \
-d "$release_data" \
"https://api.github.com/repos/${{ github.repository }}/releases")
release_id=$(echo $response | jq -r .id)
echo "Release ID: $release_id"
echo "release_id=$release_id" >> "$GITHUB_OUTPUT"
shell: bash
- name: Build
if: env.release == 'false'
run: cargo build --verbose
- name: Run tests
if: env.release == 'false'
run: cargo test --verbose
upload_assets:
needs: release
if: needs.release.outputs.release-flag == 'true'
strategy:
matrix:
platform:
- release_for: Linux-x86_64
os: ubuntu-20.04
target: x86_64-unknown-linux-gnu
bin: stream
name: RuStream-Linux-x86_64.tar.gz
command: build
# todo: Currently failing due to OpenSSL requirement on Windows
# - release_for: Windows-x86_64
# os: windows-latest
# target: x86_64-pc-windows-msvc
# bin: stream.exe
# name: RuStream-Windows-x86_64.zip
# command: build
- release_for: macOS-x86_64
os: macOS-latest
target: x86_64-apple-darwin
bin: stream
name: RuStream-Darwin-x86_64.tar.gz
command: build
- release_for: RaspberryPi
os: ubuntu-20.04
target: arm-unknown-linux-gnueabihf
bin: stream
name: RuStream-RaspberryPi.tar.gz
command: build
name: Upload asset for ${{ matrix.platform.release_for }}
runs-on: ${{ matrix.platform.os }}
permissions:
contents: write
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install OpenSSL static for Windows
# https://github.com/sfackler/rust-openssl/issues/1086
if: ${{ matrix.platform.os == 'windows-latest' }}
run: |
mkdir \Tools
cd \Tools
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
.\bootstrap-vcpkg.bat
.\vcpkg.exe install openssl:x64-windows-static
$env:OPENSSL_DIR = 'C:\Tools\vcpkg\installed\x64-windows-static'
$env:OPENSSL_STATIC = 'Yes'
[System.Environment]::SetEnvironmentVariable('OPENSSL_DIR', $env:OPENSSL_DIR, [System.EnvironmentVariableTarget]::User)
[System.Environment]::SetEnvironmentVariable('OPENSSL_STATIC', $env:OPENSSL_STATIC, [System.EnvironmentVariableTarget]::User)
- name: Build
run: |
cargo build --release
shell: bash
- name: Run tests
run: |
cargo test
shell: bash
- name: Copy artifacts to folder and compress non windows
if: ${{ matrix.platform.os != 'windows-latest' }}
run: |
mkdir -p rustream
cp target/release/${{ matrix.platform.bin }} rustream/${{ matrix.platform.bin }}
tar -zcvf ${{ matrix.platform.name }} rustream/
- name: Copy artifacts to folder and compress Windows
if: ${{ matrix.platform.os == 'windows-latest' }}
run: |
mkdir -p rustream
cp target/release/${{ matrix.platform.bin }} rustream/${{ matrix.platform.bin }}
Compress-Archive -DestinationPath ${{ matrix.platform.name }} -Path rustream/
- name: Upload Asset to Release
run: |
curl -X POST -H "Authorization: token ${{ secrets.GIT_TOKEN }}" \
-H "Content-Type: application/octet-stream" \
--data-binary @"${{ matrix.platform.name }}" \
"https://uploads.github.com/repos/${{ github.repository }}/releases/${{ needs.release.outputs.release-id }}/assets?name=${{ matrix.platform.name }}"
shell: bash
publish-crate:
needs: release
if: needs.release.outputs.release-flag == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Release Crate
run: |
cargo login ${{ secrets.CRATES_TOKEN }}
cargo publish --allow-dirty # Set allow-dirty since building will create a /target folder that will be uncommitted in git
shell: bash