-
Notifications
You must be signed in to change notification settings - Fork 1
171 lines (171 loc) · 6.64 KB
/
cd.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
#name: Continuous Deployment
#permissions:
# contents: write
#on:
# push:
# tags:
# - "v*.*.*"
#
#jobs:
# create-github-release:
# name: create-github-release
# runs-on: ubuntu-latest
# steps:
# - name: Create artifacts directory
# run: mkdir artifacts
#
# - name: Get the release version from the tag
# if: env.VERSION == ''
# run: |
# if [[ -n "${{ github.event.inputs.tag }}" ]]; then
# echo "Manual run against a tag; overriding actual tag in the environment..."
# echo "VERSION=${{ github.event.inputs.tag }}" >> $GITHUB_ENV
# else
# echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
# fi
#
# - name: Validate version environment variable
# run: |
# echo "Version being built against is version ${{ env.VERSION }}"!
#
# - name: Save version number to artifact
# run: echo "${{ env.VERSION }}" > artifacts/release-version
#
# - name: Upload artifacts
# uses: actions/upload-artifact@v1
# with:
# name: artifacts
# path: artifacts
#
# build-release:
# name: build-release
# needs: [create-github-release]
# runs-on: ${{ matrix.job.os }}
# env:
# RUST_BACKTRACE: 1
# strategy:
# fail-fast: false
# matrix:
# rust: [stable]
# job:
# - { os: "macOS-latest", target: "x86_64-apple-darwin", artifact_prefix: "macos" }
# - { os: "windows-latest", target: "x86_64-pc-windows-msvc", artifact_prefix: "windows" }
# - { os: "ubuntu-latest", target: "x86_64-unknown-linux-gnu", artifact_prefix: "linux", }
# - { os: "ubuntu-latest", target: "x86_64-unknown-linux-musl", artifact_prefix: "linux-musl", }
# - { os: "ubuntu-latest", target: "aarch64-unknown-linux-gnu", artifact_prefix: "aarch64-gnu", use-cross: true, test-bin: "--bin image2text" }
# - { os: "ubuntu-latest", target: "aarch64-unknown-linux-musl", artifact_prefix: "aarch64-musl", use-cross: true, test-bin: "--bin image2text" }
# - { os: "ubuntu-latest", target: "arm-unknown-linux-gnueabihf", artifact_prefix: "arm-gnu", use-cross: true, test-bin: "--bin image2text" }
# - { os: "ubuntu-latest", target: "arm-unknown-linux-musleabihf", artifact_prefix: "arm-musl", use-cross: true, test-bin: "--bin image2text" }
#
# steps:
# - name: Checkout repository
# uses: actions/checkout@v2
# with:
# fetch-depth: 1
#
# - name: Get shared artifacts
# uses: actions/download-artifact@v2
# with:
# name: artifacts
# path: artifacts
#
# - name: Set release version
# shell: bash
# run: |
# release_version="$(cat ./artifacts/release-version)"
# echo "RELEASE_VERSION=$release_version" >> $GITHUB_ENV
#
# - name: Validate release environment variables
# run: |
# echo "Release version: ${{ env.RELEASE_VERSION }}"
#
# - name: Install toolchain
# uses: actions-rs/toolchain@v1
# with:
# toolchain: ${{ matrix.rust }}
# override: true
# target: ${{ matrix.job.target }}
# profile: minimal # minimal component installation (ie, no documentation)
#
# - name: Installing needed macOS dependencies
# if: matrix.job.os == 'macos-latest'
# run: brew install [email protected]
#
# - name: Installing needed Ubuntu dependencies
# if: matrix.job.os == 'ubuntu-latest'
# shell: bash
# run: |
# sudo apt-get -y update
# sudo apt-get -y install -qq pkg-config libssl-dev libxcb1-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev musl-tools
# case ${{ matrix.job.target }} in
# arm-unknown-linux-*) sudo apt-get -y install gcc-arm-linux-gnueabihf ;;
# aarch64-unknown-linux-*) sudo apt-get -y install gcc-aarch64-linux-gnu ;;
# esac
#
# - name: Build
# uses: actions-rs/cargo@v1
# with:
# use-cross: ${{ matrix.job.use-cross }}
# command: build
# args: --release --verbose --target=${{ matrix.job.target }}
# toolchain: ${{ matrix.rust }}
#
# - name: Test
# uses: actions-rs/cargo@v1
# with:
# use-cross: ${{ matrix.job.use-cross }}
# command: test
# args: --target=${{ matrix.job.target }} ${{ matrix.job.test-bin }}
#
# - name: Packaging final binary (Windows)
# if: matrix.job.os == 'windows-latest'
# shell: bash
# run: |
# cd target/${{ matrix.job.target }}/release
# BINARY_NAME=image2text.exe
# # strip the binary
# strip $BINARY_NAME
# RELEASE_NAME=image2text-${{ matrix.job.artifact_prefix }}
# tar czvf $RELEASE_NAME.tar.gz $BINARY_NAME
# # create sha checksum files
# certutil -hashfile $RELEASE_NAME.tar.gz sha256 | grep -E [A-Fa-f0-9]{64} > $RELEASE_NAME.sha256
# echo "RELEASE_NAME=$RELEASE_NAME" >> $GITHUB_ENV
#
# - name: Packaging final binary (macOS and Linux)
# if: matrix.job.os != 'windows-latest'
# shell: bash
# run: |
# # set the right strip executable
# STRIP="strip";
# case ${{ matrix.job.target }} in
# arm-*-linux-*) STRIP="arm-linux-gnueabihf-strip" ;;
# aarch64-*-linux-*) STRIP="aarch64-linux-gnu-strip" ;;
# esac;
# cd target/${{ matrix.job.target }}/release
# BINARY_NAME=image2text
# # strip the binary
# "$STRIP" "$BINARY_NAME"
# RELEASE_NAME=image2text-${{ matrix.job.artifact_prefix }}
# tar czvf $RELEASE_NAME.tar.gz $BINARY_NAME
# # create sha checksum files
# shasum -a 256 $RELEASE_NAME.tar.gz > $RELEASE_NAME.sha256
# echo "RELEASE_NAME=$RELEASE_NAME" >> $GITHUB_ENV
#
# - name: Releasing assets
# uses: softprops/action-gh-release@v1
# with:
# files: |
# target/${{ matrix.job.target }}/release/${{ env.RELEASE_NAME }}.tar.gz
# target/${{ matrix.job.target }}/release/${{ env.RELEASE_NAME }}.sha256
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#
# - name: Add SHA to artifacts
# run: |
# cp target/${{ matrix.job.target }}/release/${{ env.RELEASE_NAME }}.sha256 artifacts/
#
# - name: Upload artifacts
# uses: actions/upload-artifact@v1
# with:
# name: artifacts
# path: artifacts