E2E Test #1773
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
# This is a basic workflow to help you get started with Actions | |
name: E2E Test | |
on: | |
push: | |
pull_request: | |
branches: [ master ] | |
schedule: | |
- cron: '26 9 * * *' | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
ubuntu: | |
strategy: | |
fail-fast: true | |
matrix: | |
os_name: | |
- ubuntu | |
os_version: | |
- 22.04 | |
- 24.04 | |
runs-on: ubuntu-latest | |
container: ${{ matrix.os_name }}:${{ matrix.os_version }} | |
steps: | |
- name: Install requirements | |
run: | | |
apt-get update | |
apt-get upgrade -y | |
apt-get install -y curl sudo | |
- name: Install dotfiles | |
run: | | |
env LANG=en_US.utf8 HOME=/root bash -c "$(curl -fsSL https://git.io/imokuri)" | |
ubuntu_proxy: | |
strategy: | |
fail-fast: true | |
matrix: | |
os_name: | |
- ubuntu | |
os_version: | |
- 22.04 | |
- 24.04 | |
runs-on: ubuntu-latest | |
container: ${{ matrix.os_name }}:${{ matrix.os_version }} | |
services: | |
squid: | |
image: wernight/squid | |
ports: | |
- 3128:3128 | |
steps: | |
- name: Install requirements | |
run: | | |
env https_proxy=http://squid:3128 http_proxy=http://squid:3128 apt-get update | |
env https_proxy=http://squid:3128 http_proxy=http://squid:3128 apt-get upgrade -y | |
env https_proxy=http://squid:3128 http_proxy=http://squid:3128 apt-get install -y curl sudo | |
- name: Install dotfiles | |
run: | | |
env https_proxy=http://squid:3128 http_proxy=http://squid:3128 LANG=en_US.utf8 HOME=/root bash -c "$(curl -fsSL https://git.io/imokuri)" | |
cat /root/.config/git/config.proxy |