-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (43 loc) · 1.35 KB
/
rust.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
name: Build and Test Rust Code
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
id-token: write
contents: read
jobs:
build-and-test:
name: Build and Test
environment: cicd
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Install protobuf
run: sudo apt install -y protobuf-compiler && protoc --version
- name: Install latest stable Rust toolchain
run: rustup toolchain install stable --profile minimal --no-self-update
- name: Connect to cache
uses: Swatinem/rust-cache@v2
- name: cargo build
run: cargo build --all-targets --release
- name: Login to Azure
uses: azure/login@v2
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
- name: Write config
run: $GITHUB_WORKSPACE/target/release/get-config ${{ secrets.CONFIG_STORE_NAME }} > $GITHUB_WORKSPACE/.env
- name: cargo test
run: cargo test --release
- name: Upload Archive
uses: actions/upload-artifact@v4
with:
name: nueces-homies-bot
path: |
target/release/get-config