Skip to content

Commit ae6fdb3

Browse files
committed
Reenable CI
1 parent 9e2f58d commit ae6fdb3

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

.github/workflows/rust-ci.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@ name: CI
1414
jobs:
1515
lint:
1616
name: Lint
17-
if: false
1817
strategy:
1918
matrix:
20-
os: [ubuntu-22.04, windows-2022, macos-14]
19+
os:
20+
- ubuntu-24.04
21+
- windows-2022
22+
- macos-14
23+
- ubuntu-24.04-arm
2124
runs-on: ${{ matrix.os }}
2225
steps:
2326
- uses: actions/checkout@v4
@@ -41,9 +44,9 @@ jobs:
4144
strategy:
4245
matrix:
4346
os:
44-
#- ubuntu-24.04,
45-
#- windows-2022,
46-
#- macos-14,
47+
- ubuntu-24.04
48+
- windows-2022
49+
- macos-14
4750
- ubuntu-24.04-arm
4851
runs-on: ${{ matrix.os }}
4952
steps:
@@ -58,8 +61,7 @@ jobs:
5861

5962
build-android:
6063
name: Build sources
61-
if: false
62-
runs-on: ubuntu-22.04
64+
runs-on: ubuntu-24.04
6365
strategy:
6466
matrix:
6567
job:
@@ -86,15 +88,14 @@ jobs:
8688
8789
deny-check:
8890
name: cargo-deny
89-
runs-on: ubuntu-22.04
91+
runs-on: ubuntu-24.04
9092
steps:
9193
- uses: actions/checkout@v4
9294
- uses: EmbarkStudios/cargo-deny-action@v2
9395

9496
publish-check:
9597
name: Publish Check
96-
if: false
97-
runs-on: ubuntu-22.04
98+
runs-on: ubuntu-24.04
9899
steps:
99100
- uses: actions/checkout@v4
100101
- uses: dtolnay/rust-toolchain@stable
@@ -108,7 +109,7 @@ jobs:
108109
cargo publish --dry-run --manifest-path sadness-generator/Cargo.toml
109110
110111
all:
111-
runs-on: ubuntu-22.04
112+
runs-on: ubuntu-24.04
112113
needs: [lint, test, build-android, deny-check, publish-check]
113114
steps:
114115
- run: echo "All test jobs passed"

0 commit comments

Comments
 (0)