Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Creusot tutorial",
"image": "ghcr.io/creusot-rs/creusot:v0.11.0",
"image": "ghcr.io/creusot-rs/creusot:latest",

"containerEnv": {
"CREUSOT_DATA_HOME": "/"
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
name: Build

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
push

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
CREUSOT_VERSION: v0.11.0
CREUSOT_VERSION: master

jobs:
rust:
Expand Down Expand Up @@ -65,4 +62,4 @@ jobs:
run: cargo update --dry-run

- name: Run Creusot
run: cargo creusot prove -- -Fsolutions
run: cargo creusot -- -Fsolutions
8 changes: 0 additions & 8 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
name: Nightly
# Note: this job only checks out the dev branch! (see `ref: dev`)
on:
schedule:
- cron: '0 2 * * *'
Expand All @@ -10,8 +9,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: dev

- uses: ocaml/setup-ocaml@v3
with:
Expand Down Expand Up @@ -44,10 +41,5 @@ jobs:
cd ../creusot
./INSTALL

- name: Patch Cargo config for nightly
run: |
mkdir .cargo
echo -e '[patch.crates-io]\ncreusot-std = { path = "../creusot/creusot-std" }' > .cargo/config.toml

- name: Run Creusot
run: cargo creusot -- -Fsolutions
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"overrideCommand": [
"cargo",
"creusot",
"--only=coma",
"--",
"--message-format=json"
]
Expand Down
Loading
Loading