Grid client integration tests #327
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Grid client integration tests | |
defaults: | |
run: | |
working-directory: grid-client | |
on: | |
schedule: | |
- cron: 0 3 * * * | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
network: [dev, qa, test, main] | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.21" | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Get dependencies | |
run: | | |
go mod download | |
- name: install curl, wg and yggdrasil and add peers | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y wireguard | |
sudo apt-get install dirmngr | |
sudo apt-get install curl | |
gpg --fetch-keys https://neilalexander.s3.dualstack.eu-west-2.amazonaws.com/deb/key.txt | |
gpg --export 569130E8CA20FBC4CB3FDE555898470A764B32C9 | sudo apt-key add - | |
echo 'deb http://neilalexander.s3.dualstack.eu-west-2.amazonaws.com/deb/ debian yggdrasil' | sudo tee /etc/apt/sources.list.d/yggdrasil.list | |
sudo apt-get update | |
sudo apt-get install yggdrasil | |
sudo systemctl enable yggdrasil | |
PEERS=$(curl https://raw.githubusercontent.com/AhmedHanafy725/yggdrasil-config/main/config.json | jq '.yggdrasil.peers[]' -r | sed 's/\//\\\//g' | sed -z 's/\n/\\n/g') | |
sudo sed -i -- 's/Peers\: \[\]/Peers: [\n'"$PEERS"']/g' /etc/yggdrasil/yggdrasil.conf | |
sudo systemctl stop yggdrasil | |
sudo systemctl start yggdrasil | |
- name: Test | |
env: | |
MNEMONICS: ${{ secrets.MNEMONICS }} | |
NETWORK: ${{ matrix.network }} | |
# run: make integration | |
run: | | |
for test in $(go run scripts/scrap_tests.go) | |
do | |
go test -v ./integration_tests -run $test | |
done |