Point to the release branch for other workflows

This commit is contained in:
Sorawee Porncharoenwase 2020-07-20 08:05:03 -07:00 committed by Sam Tobin-Hochstadt
parent ef2132ced3
commit 173fecdff4
2 changed files with 10 additions and 0 deletions

View File

@ -139,7 +139,12 @@ jobs:
- name: Untar
working-directory: ${{ github.workspace }}
run: tar -xvjf ${{ runner.temp }}/racketcgc-macos-nocify-x64_git${{ github.sha}}.tar.bz2
- name: Checking out ChezScheme Release
if: github.ref == 'refs/heads/release'
working-directory: ./racket/src
run: git clone --single-branch --branch release --depth=1 --recurse-submodules -j3 https://github.com/racket/ChezScheme
- name: Checking out ChezScheme
if: github.ref != 'refs/heads/release'
working-directory: ./racket/src
run: git clone --depth=1 --recurse-submodules -j3 https://github.com/racket/ChezScheme
- name: Configuring Racket CS

View File

@ -169,7 +169,12 @@ jobs:
make -j$((cpus+1)) install
- name: Clean repo
run: git clean -xdf
- name: Checking out ChezScheme Release
if: github.ref == 'refs/heads/release'
working-directory: ./racket/src
run: git clone --single-branch --branch release --depth=1 --recurse-submodules -j3 https://github.com/racket/ChezScheme
- name: Checking out ChezScheme
if: github.ref != 'refs/heads/release'
working-directory: ./racket/src
run: git clone --depth=1 --recurse-submodules -j3 https://github.com/racket/ChezScheme
- name: Configuring Racket CS