322394fe63
* feat: use go1.16 embedding for resources We want to embed everything that can be easily embedded. We should, at a minimum, replace the downloading of resources and bindata. Ref: https://github.com/ooni/probe/issues/1367. * fix: get rid of bindata and use go embed instead * fix: start unbreaking some automatic tests * fix: fetch resources as part of the mobile build * fix: convert more stuff to go1.16 I still expect many breakages, but we'll fix them. * fix: make the windows CI green * fix: get resources before running QA * fix: go1.16 uses modules by default * hopefully fix all other outstanding issues * fix(QA/telegram.py): add another DC IP address * Apply suggestions from code review
48 lines
1.6 KiB
YAML
48 lines
1.6 KiB
YAML
# Build and publish Debian packages
|
|
name: debian
|
|
on:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
- "release/**"
|
|
tags:
|
|
- "v*"
|
|
jobs:
|
|
build:
|
|
runs-on: "ubuntu-20.04"
|
|
steps:
|
|
- name: Docker
|
|
run: |
|
|
echo $'{\n "experimental": true\n}' | sudo tee /etc/docker/daemon.json
|
|
sudo service docker restart
|
|
- uses: actions/setup-go@v1
|
|
with:
|
|
go-version: "1.16"
|
|
- uses: actions/checkout@v2
|
|
- run: DOCKER_CLI_EXPERIMENTAL=enabled ./build.sh linux_amd64
|
|
- run: sudo apt-get update -q
|
|
- run: sudo apt-get build-dep -y --no-install-recommends .
|
|
- run: |
|
|
VER=$(./CLI/linux/amd64/ooniprobe version)
|
|
if [[ ! $GITHUB_REF =~ ^refs/tags/* ]]; then
|
|
VER="${VER}~${GITHUB_RUN_NUMBER}"
|
|
dch -v $VER "New test version"
|
|
BT_REPO="${BT_REPO}-test"
|
|
else
|
|
dch -v $VER "New release"
|
|
fi
|
|
dpkg-buildpackage -us -uc -b
|
|
find ../ -name "*.deb" -type f
|
|
DEB="../ooniprobe-cli_${VER}_amd64.deb"
|
|
echo no | sudo dpkg -i $DEB
|
|
BT_FNAME="ooniprobe-cli_${VER}_amd64.deb"
|
|
curl --upload-file "${DEB}" -u "${BT_APIUSER}:${BT_APIKEY}" \
|
|
"https://api.bintray.com/content/${BT_ORG}/${BT_REPO}/${BT_PKGNAME}/${VER}/${BT_FNAME};deb_distribution=${DEBDIST};deb_component=main;deb_architecture=amd64;publish=1"
|
|
env:
|
|
DEBDIST: unstable
|
|
BT_APIKEY: ${{ secrets.BT_APIKEY }}
|
|
BT_APIUSER: federicoceratto
|
|
BT_ORG: ooni
|
|
BT_PKGNAME: ooniprobe
|
|
BT_REPO: ooniprobe-debian
|