2021-04-29 19:24:25 +02:00
|
|
|
# miniooni checks whether we can build the research client miniooni
|
2021-05-06 19:56:55 +02:00
|
|
|
# and publishes the linux binaries as artefacts. There is no point in
|
2021-04-29 19:24:25 +02:00
|
|
|
# publishing windows or darwin binaries b/c they are not signed.
|
2021-02-02 12:05:47 +01:00
|
|
|
name: miniooni
|
|
|
|
on:
|
|
|
|
push:
|
2021-05-06 19:56:55 +02:00
|
|
|
branches:
|
2021-10-22 16:13:44 +02:00
|
|
|
- "master"
|
2021-05-06 19:56:55 +02:00
|
|
|
- "release/**"
|
2021-02-02 12:05:47 +01:00
|
|
|
jobs:
|
|
|
|
test:
|
2021-04-29 19:24:25 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2021-02-02 12:05:47 +01:00
|
|
|
steps:
|
2021-05-11 16:15:13 +02:00
|
|
|
- uses: actions/setup-go@v1
|
|
|
|
with:
|
2021-11-10 14:18:04 +01:00
|
|
|
go-version: "1.17.3"
|
2021-02-02 12:05:47 +01:00
|
|
|
- uses: actions/checkout@v2
|
2021-11-19 12:40:10 +01:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- run: |
|
|
|
|
echo -n $PSIPHON_CONFIG_KEY > ./internal/engine/psiphon-config.key
|
|
|
|
echo $PSIPHON_CONFIG_JSON_AGE_BASE64 | base64 -d > ./internal/engine/psiphon-config.json.age
|
|
|
|
env:
|
|
|
|
PSIPHON_CONFIG_KEY: ${{ secrets.PSIPHON_CONFIG_KEY }}
|
|
|
|
PSIPHON_CONFIG_JSON_AGE_BASE64: ${{ secrets.PSIPHON_CONFIG_JSON_AGE_BASE64 }}
|
|
|
|
|
|
|
|
- run: ./mk ./CLI/miniooni
|
2021-05-06 19:56:55 +02:00
|
|
|
|
2021-05-13 18:04:47 +02:00
|
|
|
- run: ./E2E/miniooni.bash ./CLI/linux/amd64/miniooni
|
2021-04-29 19:24:25 +02:00
|
|
|
|
2021-02-02 12:05:47 +01:00
|
|
|
- uses: actions/upload-artifact@v1
|
|
|
|
with:
|
|
|
|
name: miniooni-linux-386
|
|
|
|
path: ./CLI/linux/386/miniooni
|
2021-04-29 19:24:25 +02:00
|
|
|
|
2021-02-02 12:05:47 +01:00
|
|
|
- uses: actions/upload-artifact@v1
|
|
|
|
with:
|
|
|
|
name: miniooni-linux-amd64
|
|
|
|
path: ./CLI/linux/amd64/miniooni
|
2021-04-29 19:24:25 +02:00
|
|
|
|
2021-02-02 12:05:47 +01:00
|
|
|
- uses: actions/upload-artifact@v1
|
|
|
|
with:
|
2021-02-02 15:34:03 +01:00
|
|
|
name: miniooni-linux-arm
|
|
|
|
path: ./CLI/linux/arm/miniooni
|
2021-04-29 19:24:25 +02:00
|
|
|
|
2021-02-02 12:05:47 +01:00
|
|
|
- uses: actions/upload-artifact@v1
|
|
|
|
with:
|
|
|
|
name: miniooni-linux-arm64
|
|
|
|
path: ./CLI/linux/arm64/miniooni
|