We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1f466df + ca631b6 commit f6b868cCopy full SHA for f6b868c
.github/workflows/continuous-integration.yml
@@ -29,7 +29,7 @@ jobs:
29
run: sudo xargs apt-get install -y < .github/workflows/apt-packages.txt
30
31
- run: |
32
- for commit in $(git rev-list origin/master..HEAD); do
+ for commit in $(git rev-list origin/master..HEAD | tac); do
33
git checkout $commit
34
echo "Checking commit $commit"
35
ci-tests/build-spike
@@ -49,7 +49,7 @@ jobs:
49
run: xargs brew install --overwrite < .github/workflows/brew-packages.txt
50
51
52
+ for commit in $(git rev-list origin/master..HEAD | tail -r); do
53
54
55
0 commit comments