Remove ByteStream type is not used anymore #11
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: C/C++ CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: support 32bit | |
run: | | |
sudo dpkg --add-architecture i386 | |
sudo apt-get -qq update | |
sudo apt-get -y install gcc-multilib g++-multilib | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- uses: abel0b/[email protected] | |
with: | |
version: "5.0.0-beta2" | |
- name: Build 3rdparty | |
run: | | |
cd 3rdparty | |
premake5 gmake2 | |
./build.sh | |
- name: Generate build files | |
run: | | |
premake5 gmake2 | |
- name: Build | |
run: | | |
make -j$(nproc) config=release_x64 | |
- name: Test | |
run: | | |
./build/release_x64/TDissUnitTester --gtest_output=xml:test_results.xml | |
- name: Upload test results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-results | |
path: test_results.xml |