Point to the release branch for other workflows
This commit is contained in:
parent
ef2132ced3
commit
173fecdff4
5
.github/workflows/ci-push_macos.yml
vendored
5
.github/workflows/ci-push_macos.yml
vendored
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user