Skip to content

Commit

Permalink
try fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sgatto committed Aug 22, 2024
1 parent b08fc2d commit ea39486
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/centos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
uses: actions/checkout@v4
with:
repository: google/or-tools
ref: 'stable'
ref: 'v9.10'

- name: Checkout this repository
uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/oracle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
uses: actions/checkout@v4
with:
repository: google/or-tools
ref: 'stable'
ref: 'v9.10'

- name: Checkout this repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
run: |
MY_DIR="ortools_python-3.9${{ steps.names.outputs.appendix }}"
mkdir $MY_DIR
cp build/python/dist/*.whl $MY_DIR
cp ./build/_deps/ortools-build/python/dist/*.whl $MY_DIR
ARCHIVE_NAME="${MY_DIR}.zip"
ARCHIVE_PATH="$PWD/${ARCHIVE_NAME}"
zip -r ${ARCHIVE_PATH} ${MY_DIR}
Expand All @@ -236,7 +236,7 @@ jobs:
run: |
MY_DIR="ortools_java${{ steps.names.outputs.appendix }}"
mkdir ${MY_DIR}
cp build/java/ortools-*/target/*.jar $MY_DIR
cp ./build/_deps/ortools-build/java/ortools-*/target/*.jar $MY_DIR
ARCHIVE_NAME="${MY_DIR}.zip"
ARCHIVE_PATH="$PWD/${ARCHIVE_NAME}"
df -h
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
shell: bash
run: |
OR_REPO="https://github.com/google/or-tools.git"
OR_REF="stable"
OR_REF="v9.10"
echo "OR_REPO=$OR_REPO" >> $GITHUB_ENV
echo "OR_REF=$OR_REF" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
shell: bash
run: |
OR_REPO="https://github.com/google/or-tools.git"
OR_REF="stable"
OR_REF="v9.10"
echo "OR_REPO=$OR_REPO" >> $GITHUB_ENV
echo "OR_REF=$OR_REF" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:
id: wheel
shell: bash
run: |
cd ./build/python/dist
cd ./build/_deps/ortools-build/python/dist
MY_DIR="ortools_python-${{ matrix.python.version }}${{ steps.names.outputs.appendix }}"
mkdir ${MY_DIR}
cp *.whl "${MY_DIR}"
Expand Down

0 comments on commit ea39486

Please sign in to comment.