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
9 changes: 1 addition & 8 deletions .github/workflows/ci-julia-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
PYTHON: ~
jobs:
test:
name: Julia ${{ matrix.version }} - t=${{ matrix.threads }} - jet=${{ matrix.jet }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
name: Julia ${{ matrix.version }} - t=${{ matrix.threads }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -26,12 +26,6 @@ jobs:
arch: x64
version: alpha
threads: 2
jet: 'false'
- os: ubuntu-latest
arch: x64
version: '1'
threads: 2
jet: 'true'
steps:
- uses: actions/checkout@v6
- uses: julia-actions/install-juliaup@v2
Expand All @@ -42,7 +36,6 @@ jobs:
- uses: julia-actions/julia-runtest@v1
env:
JULIA_NUM_THREADS: ${{ matrix.threads }}
JET_TEST: ${{ matrix.jet }}
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v5
with:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# News

## v0.1.0 - dev

- Basic datastructures for representing circuits through ADT with Moshi.jl
- Basic circuit traversal routines
- Plotting extension through Makie.jl
2 changes: 1 addition & 1 deletion test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
Moshi = "2e0e35c7-a2e4-4343-998d-7ef72827ed2d"
PBCCompiler = "66660b70-1c9c-4e13-82cc-f550c154eed2"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
QuantumClifford = "0525e862-1e90-11e9-3e4d-1b39d7109de1"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"
14 changes: 13 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
using PBCCompiler
using TestItemRunner

JET_flag = false

if get(ENV, "JET_TEST", "") != "true"
@info "Skipping JET tests -- must be explicitly enabled."
@info "Environment must set JET_TEST=true."
else
JET_flag = true
end

using Pkg
JET_flag && Pkg.add("JET")

# filter for the test
testfilter = ti -> begin
exclude = Symbol[]
if get(ENV, "JET_TEST", "") != "true"
if !JET_flag
push!(exclude, :jet)
end
if !(VERSION >= v"1.10")
Expand Down
Loading