Skip to content

Commit

Permalink
Adds ci workflow to build experimental archive from ooni/probe-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
aanorbel committed Jan 30, 2024
1 parent d8e8bd6 commit 444b869
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build_experimental_engine.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: build_experimental_engine

on: [push]

jobs:
build_android:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'

- name: Setup Android SDK
uses: android-actions/setup-android@v3

- name: Get GOVERSION content
id: goversion
run: echo "version=$(cat GOVERSION)" >> "$GITHUB_OUTPUT"
shell: bash

- uses: magnetikonline/action-golang-cache@v4
with:
go-version: "${{ steps.goversion.outputs.version }}"
cache-key-suffix: "-coverage-${{ steps.goversion.outputs.version }}"

- name: Build Experimental Archive from `ooni/probe-cli`
run: ./gradlew buildExperimentalArchive

0 comments on commit 444b869

Please sign in to comment.