temporary change for reducing warnings #1052
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ubuntu CI | |
on: | |
push: | |
paths-ignore: | |
- ".devcontainer/**" | |
- ".vscode/**" | |
- "doc/**" | |
- "*.md" | |
pull_request: | |
paths-ignore: | |
- ".devcontainer/**" | |
- ".vscode/**" | |
- "doc/**" | |
- "*.md" | |
jobs: | |
gcc11-build: | |
name: GCC11 build | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
runs-on: "ubuntu-22.04" | |
env: | |
CXX_COMPILER: "/usr/lib/ccache/g++" | |
C_COMPILER: "/usr/lib/ccache/gcc" | |
SCALUQ_USE_TEST: "Yes" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install gcc-11/g++-11 | |
run: | | |
sudo apt update && \ | |
sudo apt install -y software-properties-common && \ | |
sudo apt update && \ | |
sudo apt install -y gcc-11 g++-11 && \ | |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 100 && \ | |
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-11 100 | |
- name: Setup cmake | |
uses: lukka/get-cmake@latest | |
- name: Install Ninja | |
run: sudo apt install ninja-build | |
- name: Setup ccache | |
uses: hendrikmuhs/ccache-action@v1.2 | |
with: | |
key: "${{ github.job }}-ubuntu-22.04" | |
verbose: 2 | |
- name: Install scaluq for Ubuntu | |
run: CMAKE_BUILD_TYPE=Debug ./script/build_gcc.sh | |
- name: Check format | |
run: | | |
ninja -C build format | |
diff=$(git diff) | |
echo -n "$diff" | |
test $(echo -n "$diff" | wc -l) -eq 0 | |
- name: Install scaluq Python module | |
run: pip install .[ci] | |
- name: Test in Ubuntu | |
run: | | |
OMP_PROC_BIND=false ninja test -C build -j $(nproc) | |
- name: Test if stub exists | |
run: | | |
echo -e "from scaluq import StateVector\nfrom scaluq.gate import I" > /tmp/stub_sample.py | |
mypy /tmp/stub_sample.py | |
nvcc-build: | |
name: NVCC build | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
runs-on: "ubuntu-22.04" | |
env: | |
CXX_COMPILER: "/usr/lib/ccache/g++" | |
C_COMPILER: "/usr/lib/ccache/gcc" | |
SCALUQ_USE_TEST: "Yes" | |
SCALUQ_USE_CUDA: "Yes" | |
SCALUQ_CUDA_ARCH: "PASCAL61" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install gcc-11/g++-11 | |
run: | | |
sudo apt update && \ | |
sudo apt install -y software-properties-common && \ | |
sudo apt update && \ | |
sudo apt install -y gcc-11 g++-11 && \ | |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 100 && \ | |
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-11 100 | |
- name: Setup cmake | |
uses: lukka/get-cmake@latest | |
- name: Install Ninja | |
run: sudo apt install ninja-build | |
- name: Setup ccache | |
uses: hendrikmuhs/ccache-action@v1.2 | |
with: | |
key: "${{ github.job }}-ubuntu-22.04" | |
verbose: 2 | |
- name: Install CUDA toolkit | |
uses: Jimver/cuda-toolkit@v0.2.11 | |
with: | |
cuda: "12.2.0" | |
method: "network" | |
- name: Show installed Compiler version | |
run: | | |
nvcc --version | |
gcc --version | |
g++ --version | |
cmake --version | |
- name: Install scaluq for Ubuntu | |
run: ./script/build_gcc.sh | |
- name: Install scaluq Python module | |
run: SCALUQ_USE_CUDA=ON pip install .[ci] | |
# GitHub Actions cannot run CUDA program |