update README.md #3
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: Build on archlinux | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
container: | |
runs-on: ubuntu-latest | |
container: archlinux:latest | |
steps: | |
- name: Run in container | |
run: | | |
sed -i /etc/pacman.d/mirrorlist -e "1iServer = https://mirrors.tuna.tsinghua.edu.cn/archlinux/\$repo/os/\$arch" | |
cat /etc/pacman.d/mirrorlist | |
pacman-key --init | |
pacman --noconfirm --noprogressbar -Syu | |
- name: Install dep | |
run: | | |
pacman -Syu --noconfirm cmake pkgconfig git extra-cmake-modules qt6-base qt6-declarative | |
pacman -Syu --noconfirm clang ninja zstd doxygen sdl2 mesa assimp wget unzip make gtest | |
pacman -Syu --noconfirm fakeroot sudo | |
- name: Set up user | |
run: | | |
useradd -m githubuser | |
echo -e "root ALL=(ALL:ALL) ALL\ngithubuser ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers | |
- name: Install KTX-Software from the github | |
run: | | |
wget https://github.com/KhronosGroup/KTX-Software/archive/refs/tags/v4.2.0.zip | |
unzip v4.2.0.zip | |
cd ./KTX-Software-4.2.0 | |
mkdir build | |
cd build | |
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -D KTX_FEATURE_LOADTEST_APPS=ON -DKTX_FEATURE_DOC=ON -DKTX_FEATURE_TOOLS=OFF -DKTX_FEATURE_STATIC_LIBRARY=ON .. | |
make install | |
# su githubuser -c "cd ~ && wget https://github.com/KhronosGroup/KTX-Software/archive/refs/tags/v4.2.0.zip && unzip v4.2.0.zip && cd ./KTX-Software-4.2.0 | |
# && mkdir build && cd ./build && cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -D KTX_FEATURE_LOADTEST_APPS=ON -D KTX_FEATURE_DOC=ON -DKTX_FEATURE_TOOLS=OFF .." | |
# - uses: actions/checkout@v3 | |
# with: | |
# submodules: true | |
# - name: Configure CMake | |
# run: | | |
# mkdir -p ${{github.workspace}}/build | |
# cmake -B ${{github.workspace}}/build -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} | |
# - name: Build | |
# # Build your program with the given configuration | |
# run: cmake --build ${{github.workspace}}/build |