Add Environment Variable Substitution in PathDependency
& Bugfix
#130
Workflow file for this run
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: CI | |
on: | |
# Triggers on pushes to master | |
push: | |
branches: [ master ] | |
pull_request: | |
# Allows running manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Install apt-get dependencies | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y python3 git wget curl unzip gcc | |
- name: Download Stanza | |
run: ci/download-stanza.sh | |
working-directory: ${{ github.workspace }} | |
- name: Set up authentication | |
run: ci/setup-askpass.sh | |
- name: Bootstrap and build | |
working-directory: ${{ github.workspace }} | |
run: | | |
cat ${{ github.workspace }}/.git-env | |
source ${{ github.workspace }}/.git-env | |
cat ${{ github.workspace }}/stanza.env | |
source ${{ github.workspace }}/stanza.env | |
ci/build.sh | |
env: | |
CI_TOKEN: ${{ secrets.CI_PAT }} | |
SLM_PROTOCOL: https |