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
14 changes: 4 additions & 10 deletions .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
release-plz:
name: Release-plz
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'quantinuum-dev' }}
concurrency:
group: release-plz-${{ github.ref }}
cancel-in-progress: false
Expand All @@ -21,17 +22,10 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Build Qulacs
run: |
wget -qO- https://github.com/qulacs/qulacs/archive/refs/tags/v0.6.11.tar.gz | gunzip | tar xvf -
mkdir third_party/
mv qulacs-0.6.11 third_party/qulacs/
cd third_party/qulacs
bash ./script/build_gcc.sh
- name: Run release-plz
uses: MarcoIeni/release-plz-action@v0.5
runs: |
devenv shell release-plz release-pr
devenv shell release-plz release
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ in {
LIBCLANG_PATH = "${pkgs.libclang.lib}/lib";
};

packages = [ pkgs.pkg-config pkgs.boost pkgs.eigen pkgs.mpi qulacs pkgs.act ];
packages = [ pkgs.boost pkgs.eigen pkgs.mpi qulacs pkgs.release-plz ];
languages.rust.enable = true;
languages.nix.enable = true;
}