-
Notifications
You must be signed in to change notification settings - Fork 105
43 lines (37 loc) · 1.04 KB
/
rust-ppc64le.yml
File metadata and controls
43 lines (37 loc) · 1.04 KB
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
name: PowerPC64LE
on:
workflow_dispatch:
concurrency:
group: ci-powerpc64le-tests-${{ github.ref }}-1
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-24.04-ppc64le
steps:
- name: apt-get update Ubuntu, libwayland-dev
run: |
sudo apt-get update
sudo apt-get install libwayland-dev
- uses: actions/checkout@v6
# - uses: actions/setup-python@v6.0.0
# with:
# python-version: '3.13'
- name: Install and Run Redis
run: |
sudo apt-get install redis-server
sudo service redis-server start
- name: Installing Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
targets: powerpc64le-unknown-linux-gnu
- name: Setup Rust-cache
uses: Swatinem/rust-cache@v2
with:
key: qsv-ppc64lecache
- name: Run tests
env:
RUSTFLAGS: -C target-cpu=native
run: cargo test --verbose --locked --features=apply,fetch,foreach,luau,python,feature_capable,ui