From 9f81582a015fbac9f76293253da21a81554d9c76 Mon Sep 17 00:00:00 2001 From: Tobias Nett Date: Sun, 3 Sep 2023 21:15:11 +0200 Subject: [PATCH] build(ci): Github workflow to build for linux_amd64 --- .github/workflows/linux_amd64.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/linux_amd64.yml diff --git a/.github/workflows/linux_amd64.yml b/.github/workflows/linux_amd64.yml new file mode 100644 index 000000000..2f6b983d9 --- /dev/null +++ b/.github/workflows/linux_amd64.yml @@ -0,0 +1,24 @@ +name: Linux amd64 + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Install SWIG + run: sudo apt-get install swig + - uses: actions/checkout@v3 + with: + submodules: true + - name: Set up JDK + uses: actions/setup-java@v3 + with: + java-version: '11' + distribution: 'adopt' + - name: Validate Gradle Wrapper + uses: gradle/wrapper-validation-action@v1 + - name: Setup Gradle + uses: gradle/gradle-build-action@v2 + - name: Build + run: ./gradlew native_linux_amd64_gcc