Skip to content

Commit

Permalink
Add a precheck required for Python on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lanctot committed Dec 5, 2024
1 parent b733f34 commit a76457f
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ jobs:
- name: Install
run: |
pwd
./open_spiel/scripts/ci_python_prechecks.sh
chmod +x install.sh
./install.sh
- name: Build and test
Expand Down
26 changes: 26 additions & 0 deletions open_spiel/scripts/ci_python_prechecks.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/bin/bash

# Copyright 2019 DeepMind Technologies Ltd. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

OS=`uname -a | awk '{print $1}'`
if [[ "$OS" = "Darwin" ]]; then
# This seems to be necessary to install python via brew in Github Actions
rm -f /usr/local/bin/2to3-${OS_PYTHON_VERSION}
rm -f /usr/local/bin/idle${OS_PYTHON_VERSION}
rm -f /usr/local/bin/pydoc${OS_PYTHON_VERSION}
rm -f /usr/local/bin/python${OS_PYTHON_VERSION}
rm -f /usr/local/bin/python${OS_PYTHON_VERSION}*
fi

0 comments on commit a76457f

Please sign in to comment.