update README.md #171
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: CMake | |
on: | |
push: | |
branches: [ master, dev ] | |
pull_request: | |
branches: [ master, dev ] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. | |
# You can convert this to a matrix build if you need cross-platform coverage. | |
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: Install dependence | |
run: sudo apt-get install -y libconfuse-dev pkg-config autoconf automake | |
- name: Binutils | |
run: wget https://ftp.gnu.org/gnu/binutils/binutils-2.38.tar.xz && tar xvf binutils-2.38.tar.xz && cd binutils-2.38 && ./configure --prefix=/usr/local && make -j && sudo make install | |
- name: Configure CMake | |
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. | |
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type | |
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} | |
- name: Build | |
# Build your program with the given configuration | |
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j | |
- name: pack | |
run: cd ${{github.workspace}}/build && cpack | |
- name: Get test | |
run: cd ${{github.workspace}}/test && wget https://github.com/YuzukiTsuru/OpenixCard/releases/download/TEST/tina_d1-h-yuzuki_ruler_pro_uart0.img.bin | |
- name: Prepare test | |
run: cd ${{github.workspace}}/test && mv tina_d1-h-yuzuki_ruler_pro_uart0.img.bin tina_d1-h-yuzuki_ruler_pro_uart0.img | |
- name: Test Dump | |
run: cd ${{github.workspace}}/build/dist && ./OpenixCard -d ${{github.workspace}}/test/tina_d1-h-yuzuki_ruler_pro_uart0.img | |
- name: Test Unpack & cfg | |
run: cd ${{github.workspace}}/build/dist && ./OpenixCard -uc ${{github.workspace}}/test/tina_d1-h-yuzuki_ruler_pro_uart0.img | |
- name: Test Pack | |
run: cd ${{github.workspace}}/build/dist && ./OpenixCard -p ${{github.workspace}}/test/tina_d1-h-yuzuki_ruler_pro_uart0.img.dump | |
- name: Test Size | |
run: cd ${{github.workspace}}/build/dist && ./OpenixCard -s ${{github.workspace}}/test/tina_d1-h-yuzuki_ruler_pro_uart0.img |