Skip to content

Commit 3bd1362

Browse files
authored
Merge pull request #108 from willcrichton/dev
Update to nightly-2025-08-20
2 parents 612c008 + fc82104 commit 3bd1362

File tree

38 files changed

+757
-485
lines changed

38 files changed

+757
-485
lines changed

.github/workflows/bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
bench:
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
1515
- run: cargo bench --locked --bench main -- --output-format bencher | tee crates/flowistry/benches/output.txt

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
test:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v1
1313
- uses: actions-rs/cargo@v1
@@ -26,11 +26,11 @@ jobs:
2626
strategy:
2727
matrix:
2828
include:
29-
- os: ubuntu-20.04
29+
- os: ubuntu-latest
3030
target: x86_64-unknown-linux-gnu
31-
- os: macos-12
31+
- os: macos-latest
3232
target: x86_64-apple-darwin
33-
- os: windows-2022
33+
- os: windows-latest
3434
target: x86_64-pc-windows-msvc
3535
## TODO: rustc_private is inserting incorrect dylib/so paths on ARM
3636
## targets b/c the Github Actions runner is x86, see issue #25.
@@ -67,7 +67,7 @@ jobs:
6767

6868
publish-release:
6969
needs: build-artifacts
70-
runs-on: ubuntu-20.04
70+
runs-on: ubuntu-latest
7171
steps:
7272
- uses: actions/download-artifact@v2
7373
- uses: softprops/action-gh-release@v1
@@ -79,7 +79,7 @@ jobs:
7979
8080
publish-extension:
8181
needs: publish-release
82-
runs-on: ubuntu-20.04
82+
runs-on: ubuntu-latest
8383
defaults:
8484
run:
8585
working-directory: ./ide
@@ -94,7 +94,7 @@ jobs:
9494

9595
publish-crate:
9696
needs: publish-extension
97-
runs-on: ubuntu-20.04
97+
runs-on: ubuntu-latest
9898
steps:
9999
- uses: actions/checkout@v1
100100
- run: cargo login ${{ secrets.CRATES_IO_TOKEN }} && cargo install cargo-workspaces
@@ -105,7 +105,7 @@ jobs:
105105

106106
publish-docs:
107107
needs: test
108-
runs-on: ubuntu-20.04
108+
runs-on: ubuntu-latest
109109
steps:
110110
- uses: actions/checkout@v1
111111
- run: cargo doc --lib

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
test:
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-latest
1616
env:
1717
# The proxy server for install tests uses a self-signed certificate
1818
# This allows requests to the proxy by disabling certificate validation

0 commit comments

Comments
 (0)