Skip to content

Commit

Permalink
add workflow for debian 32 bits on Git Action
Browse files Browse the repository at this point in the history
  • Loading branch information
pippocao committed Oct 10, 2024
1 parent 907873c commit a6d0816
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,44 @@ jobs:
chmod +x *.sh
./RunTest_Clang.sh
build_debian_32bits_test_and_run_GCC:
runs-on: ubuntu-latest
container:
image: ghcr.io/pippocao/bqlog/i386_debian:latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Java
run: |
export JAVA_HOME=/usr/lib/jvm/java-17-openjdk-i386
echo "JAVA_HOME=/usr/lib/jvm/java-17-openjdk-i386" >> $GITHUB_ENV
- name: Build for Debian 32
run: |
cd build/test/linux
chmod +x *.sh
./RunTest_GCC.sh
build_debian_32bits_test_and_run_Clang:
runs-on: ubuntu-latest
container:
image: ghcr.io/pippocao/bqlog/i386_debian:latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Java
run: |
export JAVA_HOME=/usr/lib/jvm/java-17-openjdk-i386
echo "JAVA_HOME=/usr/lib/jvm/java-17-openjdk-i386" >> $GITHUB_ENV
- name: Build for Debian 32
run: |
cd build/test/linux
chmod +x *.sh
./RunTest_Clang.sh
#Mac
build_mac_test_and_run:
runs-on: macos-latest
Expand Down

0 comments on commit a6d0816

Please sign in to comment.